generated from luizcartolano2/github-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (42 loc) · 1.22 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
from setuptools import setup, find_packages
setup(
name='stock-analyser',
version='0.1.0',
author='Luiz Eduardo Cartolano',
author_email='cartolanoluiz@gmail.com',
description='A project to analyse and give the best stocks on a given exchange',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/luizcartolano2/stock-analyser',
packages=find_packages(),
install_requires=[
'setuptools~=58.0.4',
'pip~=21.2.4',
'wheel~=0.37.0',
'dill~=0.3.8',
'future~=0.18.2',
'isort~=5.13.2',
'tomli~=2.0.1',
'pylint~=3.1.0',
'astroid~=3.1.0',
'tomlkit~=0.12.4',
'mccabe~=0.7.0',
'platformdirs~=4.2.0',
'numpy~=1.26.4',
'pandas~=2.2.1',
'tiingo~=0.14.0',
'python-dotenv~=1.0.1',
'flask~=3.0.2',
'Flask-Caching~=2.1.0',
'gunicorn~=21.2.0',
'pytest~=8.1.1',
'pytest-mock~=3.14.0',
'mocker~=1.1.1',
'mkdocs~=1.5.3',
'mkdocs-material~=9.5.17',
'mkdocstrings~=0.24.2',
'mkdocstrings-python~=1.9.2'
],
python_requires='>=3.8',
license='MIT License',
)