-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.13 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
import pip
import setuptools
import sunrice as target
with open('requirements.txt', 'r') as f:
requirements = f.read()
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name=target.__name__,
version=target.__version__,
author='Pavel Hübner',
author_email='pavel.hubner@gmail.com',
description=target.__doc__,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/hubpav/sunrice',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
],
keywords='lighting mqtt iot',
platforms='any',
packages=setuptools.find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'%s=%s:main' % (target.__name__, target.__name__)
]
}
)