-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (38 loc) · 1.09 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
# -*- coding: utf-8 -*-
from setuptools import setup
import subprocess
import os
import sys
PACKAGE = "tesouro_direto_br"
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
sys.path.append(os.path.join('src', PACKAGE))
import version
version_ = version.__version__
modules = \
[PACKAGE]
install_requires = \
[
'pandas>=1.5.3,<2.0.0',
'requests>=2.28.2,<3.0.0',
'matplotlib>=3.6.3,<4.0.0',
'comparar-fundos-br>=0.0.7,<0.1.0',
'pyettj>=0.2.4,<0.3.0'
]
setup_kwargs = {
'name': PACKAGE,
'version': version_,
'description': """ Gerenciamento da Carteira de Titulos Publicos Federais com dados do Tesouro Direto """,
'long_description_content_type': 'text/markdown',
'long_description': long_description,
'author': 'Rafael Rodrigues',
'author_email': '[email protected]',
'maintainer': None,
'maintainer_email': None,
'url': f"https://github.com/rafa-rod/{PACKAGE}",
'py_modules': modules,
'include_package_data': True,
'install_requires': install_requires,
'python_requires': '>=3.8,<4.0',
}
setup(**setup_kwargs)