-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (48 loc) · 1.47 KB
/
setup.py
File metadata and controls
57 lines (48 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="cfa_research_challenge_project",
version="1.0.0",
author="Anjan Mahapatra",
author_email="anjanmahapatra10@gmail.com",
description="Institutional-grade equity research and valuation system inspired by CFA Research Challenge reports",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/start-again-06/CFA_Research_Challenge",
packages=find_packages(exclude=["tests*", "notebooks*"]),
python_requires=">=3.9",
install_requires=[
"numpy>=1.23",
"pandas>=1.5",
"matplotlib>=3.7",
"seaborn>=0.12",
"scipy>=1.10",
"scikit-learn>=1.3",
"statsmodels>=0.14",
"yfinance>=0.2",
"pyyaml>=6.0",
"reportlab>=4.0"
],
extras_require={
"dev": [
"pytest",
"black",
"flake8"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
entry_points={
"console_scripts": [
"cfa-research=main:main"
]
},
include_package_data=True,
zip_safe=False
)