-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 906 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
31
from setuptools import setup, find_packages
long_description = open('README.md').read()
setup(
name='pyCTT',
version='1.0.1',
license='MIT License',
url='https://github.com/dpjrodrigues/pyCTT',
author='Diogo Rodrigues',
author_email='[email protected]',
description='Python library to retrieve package information from CTT',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['pyCTT'],
zip_safe=True,
platforms='any',
install_requires=[
'aiohttp',
'lxml'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)