-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.22 KB
/
setup.py
File metadata and controls
43 lines (37 loc) · 1.22 KB
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
import sys
import setuptools
if sys.version_info < (3, 7):
raise RuntimeError('bolsa requires Python 3.7+')
with open('README.md', 'r') as fh:
long_description = fh.read()
install_requires = [
'aiohttp>=3.6.2,<4.0.0',
'requests',
'pandas',
'beautifulsoup4',
'lxml'
]
setuptools.setup(
name='brfinance',
version='0.0.9',
packages=setuptools.find_packages(),
python_requires='>=3.7',
author='Eudes Rodrigo Nunes de Oliveira',
author_email='eudesrodrigo@outlook.com',
description=(
'Biblioteca em Python com o objetivo de facilitar o acesso a '
'dados financeiros periódicos de empresas brasileiras(B3/CVM).'
),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/eudesrodrigo/brFinance',
download_url='https://github.com/eudesrodrigo/brFinance/archive/refs/tags/0.0.5.tar.gz',
install_requires=install_requires,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
],
)