-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (39 loc) · 1.25 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
# -*- coding: utf-8 -*-
from setuptools import setup
import subprocess
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README_pypi.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(this_directory, 'comparar_fundos_br', 'version.py'), 'r') as f:
for line in f:
if line.startswith('__version__'):
version = line.split('"')[1]
packages = \
['comparar_fundos_br']
package_data = \
{'': ['*']}
install_requires = \
['DateTime>=4.5,<5.0',
'bar-chart-race>=0.1.0,<0.2.0',
'pandas>=1.4.3,<2.0.0',
'requests>=2.28.1,<3.0.0',
'seaborn>=0.11.2,<0.12.0',
'yfinance>=0.1.74,<0.2.0']
setup_kwargs = {
'name': 'comparar-fundos-br',
'version': version,
'description': 'Download dados de fundos de investimento e realiza comparações.',
'long_description': long_description,
'long_description_content_type': "text/markdown",
'author': 'Rafael Rodrigues',
'author_email': 'rafael.rafarod@gmail.com',
'maintainer': None,
'maintainer_email': None,
'url': "",
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.8,<4.0',
}
setup(**setup_kwargs)