-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.13 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
"""
PyIntelbras
-------------
Python Wrapper for Intelbras API
"""
import io
from setuptools import setup
with io.open('README.md', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name='pyintelbras',
version='0.0.23',
packages=['pyintelbras'],
python_requires=">=3",
url='https://github.com/wiltonsr/PyIntelbras',
license='MIT',
author='Wilton Rodrigues',
author_email='[email protected]',
description='Python Wrapper for Intelbras API',
long_description=readme,
long_description_content_type='text/markdown',
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'requests',
'logging',
'urllib3',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)