-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
41 lines (35 loc) · 1.12 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
import sys
import setuptools
if sys.version_info < (3, 8):
raise RuntimeError('bolsa requires Python 3.8+')
with open('README.md', 'r') as fh:
long_description = fh.read()
install_requires = [
'aiohttp>=3.6.2,<4.0.0',
'cchardet>=2.1.6',
'aiodns>=2.0.0',
'beautifulsoup4>=4.9.2',
]
setuptools.setup(
name='bolsa',
version='2.1.0',
packages=setuptools.find_packages(),
python_requires='>=3.8.*',
author='Giovanni Cornachini',
author_email='giovannicornachini@gmail.com',
description=(
'Biblioteca feita em python com o objetivo de facilitar o acesso a '
'dados de seus investimentos na bolsa de valores(B3/CEI).'
),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gicornachini/bolsa',
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'
],
)