-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
53 lines (42 loc) · 1.71 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
from setuptools import setup
# twine check dist/* pra ver se n tem nada de errado
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='fundamentos',
packages=['fundamentos'],
version='1.5', # Atualizar
license='MIT',
description='Download Bovespa Stock Market fundamentals with Python.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Nathan de Moura Vieira',
author_email='[email protected]',
url='https://github.com/NathanMoura/fundamentos',
download_url='https://github.com/NathanMoura/fundamentos/archive/v1.5.tar.gz', # Atualizar
keywords=['pandas', 'finance', 'fundamentals', 'bovespa'],
install_requires=[
'pandas',
'requests',
'lxml',
'xlrd'
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)