-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 951 Bytes
/
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
import os
from setuptools import setup, find_packages
def read(filename):
'''Read a file and return the contents.'''
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='TurnTouch',
version='0.4.3',
url='https://github.com/antsar/python-turntouch',
author='Anton Sarukhanov',
author_email='[email protected]',
description='Python library for the Turn Touch smart home remote',
license='MIT',
long_description=read('README.md'),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'bluepy==1.1.4',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Topic :: Home Automation',
]
)