-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·72 lines (64 loc) · 2.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.rst').read_text(encoding='utf-8')
setup(
name='pyg90alarm',
setup_requires=['setuptools_scm'],
use_scm_version={
"local_scheme": "no-local-version"
},
description='G90 Alarm system protocol',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/hostcc/pyg90alarm',
author='Ilia Sotnikov',
author_email='[email protected]',
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Home Automation',
'Topic :: System :: Hardware',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
],
keywords='g90, alarm, protocol',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.8, <4',
install_requires=[],
extras_require={
'dev': [
'check-manifest',
],
'test': [
'coverage',
'asynctest',
],
'docs': [
'sphinx',
'sphinx-rtd-theme',
],
},
project_urls={
'Bug Reports': 'https://github.com/hostcc/pyg90alarm/issues',
'Source': 'https://github.com/hostcc/pyg90alarm/',
},
)