-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
235cdd9
commit b4a7065
Showing
5 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
import io | ||
from glob import glob | ||
from os.path import basename, dirname, join, splitext | ||
from os.path import basename, splitext | ||
|
||
from setuptools import find_packages, setup | ||
|
||
PROJECT_URL = 'https://github.com/SteinHeselmans/DucoBox' | ||
__version__ = 'unknown' | ||
exec(open('src/duco/__version__.py').read()) | ||
|
||
|
||
def read(*names, **kwargs): | ||
return io.open( | ||
join(dirname(__file__), *names), | ||
encoding=kwargs.get('encoding', 'utf8') | ||
).read() | ||
|
||
|
||
requires = ['setuptools-scm', 'pyserial', 'influxdb'] | ||
|
||
setup( | ||
name='duco.ducobox', | ||
url=PROJECT_URL, | ||
version=__version__, | ||
setup_requires=[], | ||
use_scm_version={ | ||
'write_to': 'src/duco/__ducobox_version__.py' | ||
}, | ||
setup_requires=['setuptools_scm'], | ||
author='Stein Heselmans', | ||
author_email='[email protected]', | ||
description='Read parameters from DucoBox.', | ||
|
@@ -52,6 +43,7 @@ def read(*names, **kwargs): | |
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Home Automation', | ||
], | ||
keywords=['Duco', 'DucoBox', 'DucoBox Silent', 'ventilation', 'home automation'], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters