-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
58 lines (50 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
__version__ = "3.0.0"
with open('README.rst', 'r', encoding='utf-8') as f:
readme = f.read()
requirements = [
'beautifulsoup4>=4.7.1',
'html5lib>=1.0.1',
'pandas>=0.24.2',
'retrying>=1.3.3',
'requests>=2.22.0',
]
dev_requirements = [
"bandit>=1.6.0",
"codecov>=2.0.15",
"mypy>=0.910",
"pytest>=4.6.2",
"pytest-cov>=2.7.1",
"pytest-mypy>=0.8.1",
"types-requests>=2.25.6"
]
setup(
name='sgs',
packages=['sgs'],
python_requires=">=3.6",
install_requires=requirements,
extras_require={
'dev': dev_requirements
},
version=__version__,
description=('Python wrapper para o webservice do SGS - '
'Sistema Gerenciador de Series Temporais do '
'Banco Central do Brasil.'),
license="MIT",
long_description=readme,
author='Rafael Alves Ribeiro',
author_email='[email protected]',
url='https://github.com/rafpyprog/pySGS',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)