-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (29 loc) · 1014 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
from distutils.core import setup
setup(
name = 'osdp',
packages = ['osdp'],
version = '1.5',
license='apache-2.0',
description = 'A Python control panel implementation of the Open Supervised Device Protocol (OSDP)',
long_description = open('README.rst').read(),
author = 'Ryan Hu',
author_email = '[email protected]',
url = 'https://github.com/ryanhz/osdp-python',
download_url = 'https://github.com/ryanhz/osdp-python/archive/v1.5.tar.gz',
keywords = ['OSDP', 'Open Supervised Device Protocol', 'Access Control'],
install_requires=[
'pycryptodome',
'pyserial >= 3.4',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
'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',
],
)