-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
37 lines (34 loc) · 1.19 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
from setuptools import setup, find_packages
requirements = [
"requests>2,<3",
]
test_requirements = ["coverage"]
setup(
name='bancocentralbrasil',
version='1.2.0',
url='https://github.com/leogregianin/bancocentralbrasil',
license='LICENSE',
author='Leonardo Gregianin',
author_email='leogregianin@gmail.com',
keywords='dolar money bancocentralbrasil tax brasil',
description='Selic Rate, Inflation and Dollar Exchange from Brazil',
packages=find_packages(),
platforms='any',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[requirements],
test_suite="tests",
tests_require=test_requirements,
)