-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
53 lines (48 loc) · 1.51 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
import os
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
PACKAGE_NAME = 'ha-philipsjs'
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION = '3.2.3'
PACKAGES = find_packages(exclude=['tests', 'tests.*', 'dist', 'ccu', 'build'])
REQUIRES = [
"cryptography",
"httpx>=0.22.0",
]
setup(
name=PACKAGE_NAME,
version=VERSION,
license='MIT License',
url='https://github.com/danielperna84/ha-philipsjs',
download_url='https://github.com/danielperna84/ha-philipsjs/tarball/'+VERSION,
author='Daniel Perna',
author_email='[email protected]',
description='jointSPACE API for Home-Assistant',
long_description=readme(),
long_description_content_type='text/markdown',
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
keywords=['jointSPACE'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8'
],
extras_require={
'tests': [
'pytest>3.6.4',
'pytest-cov<2.6',
'pytest-asyncio>=0.20.2',
'coveralls',
'pytest-mock',
'respx>=0.17.0',
]
},
python_requires='>=3.8'
)