-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (26 loc) · 862 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
from distutils.core import setup
setup(
name="itoptop",
version="1.0.10",
description="iTOP API Python Lib",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/jonatasrenan/itoptop/",
author="Jonatas Renan",
author_email="[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
keywords="itop api concurrent datamodel",
packages=["itoptop"],
install_requires=[
"requests",
"lxml"
]
)