-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (40 loc) · 1.47 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
"""Setup script for pyHomeKit.
https://github.com/henridwyer/pyhomekit
"""
from os import path
from codecs import open as open_
from setuptools import setup, find_packages
PACKAGE = "pyhomekit"
VERSION = "0.0.1.4"
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open_(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
install_requires = ['bluepy', 'libnacl', 'ed25519', 'cryptography', 'tenacity']
setup(
name=PACKAGE,
version=VERSION,
description='Python interface to control HomeKit accessories.',
long_description=long_description,
# The project's main homepage.
url='https://github.com/henridwyer/pyhomekit',
# Author details
author='Henri Dwyer',
author_email='[email protected]',
# Choose your license
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Home Automation',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='homekit bluetooth home',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=install_requires,
extras_require={
'dev': ['py.test', 'mypy', 'pylint', 'flake8', 'docutils', 'Sphinx'],
}, )