forked from mv/fundamentus-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (38 loc) · 1.24 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
from setuptools import setup
from setuptools import find_packages
description='Fundamentus: API to load data from Fundamentus website: https://www.fundamentus.com.br/',
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='fundamentus',
packages=find_packages(where='src'),
package_dir={'': 'src'},
version='0.2.0',
# scripts=[
# 'bin/fundamentus.csv.py',
# 'bin/magic_formula.simple.py',
# ],
url='https://github.com/mv/fundamentus-api/',
author='Mv-Marcus Vinicius Ferreira',
author_email='[email protected]',
license='MIT',
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'requests >= 2.25.1',
'requests-cache >= 0.5.2',
'pandas >= 1.1.5',
'lxml >= 4.6.2',
'tabulate >= 0.8.7',
],
python_requires='>=3.7',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)