-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.52 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
# coding=utf-8
"""Python Carson Living setup script."""
from setuptools import setup
_VERSION = '0.0.6'
def readme():
"""Pipe README.rst"""
with open('README.rst') as desc:
return desc.read()
setup(
name='carson_living',
packages=['carson_living'],
version=_VERSION,
description='A Python library to communicate with'
' Carson Living Residences (https://www.carson.live/)',
long_description=readme(),
author='Martin Riedel',
author_email='web@riedel-it.de',
url='https://github.com/rado0x54/python-carson-living',
license='Apache License 2.0',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
include_package_data=True,
install_requires=['requests', 'pyjwt'],
test_suite='tests',
keywords=[
'carson living',
'virtual doorman',
'home automation',
],
classifiers=[
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)