-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (30 loc) · 962 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
32
33
34
35
36
37
from setuptools import find_packages, setup
def read(fname):
with open(fname) as f:
return f.read()
description = 'Simple Correios Tracking Service'
try:
long_description = read('README.md')
except IOError:
long_description = description
download_url = 'https://github.com/deniscapeto/scts/tarball/master'
setup(
name='stsc',
version='0.0.0',
install_requires=[],
url='https://github.com/deniscapeto/stsc',
author='Luiza Labs',
author_email='contato@deniscapeto.com',
keywords='correios tracking',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
download_url=download_url,
packages=find_packages(exclude=['tests*']),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
)