-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (56 loc) · 1.8 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
54
55
56
57
58
59
# setup.py
import setuptools
from pathlib import Path
def read_long_description():
here = Path(__file__).parent
with open(here / "README.md", encoding="utf-8") as fh:
return fh.read()
setuptools.setup(
name="edgar-analytics",
version="0.1.5",
author="Zohar Babin",
author_email="z.babin@gmail.com",
description="A library and CLI tool for analyzing SEC EDGAR filings with financial metrics and forecasting.",
long_description=read_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/zoharbabin/edgar_analytics",
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=[
"pandas",
"numpy",
"statsmodels",
"edgartools",
"click",
"rich",
],
extras_require={
"test": [
"pytest",
"pytz",
"pytest-xdist",
],
},
entry_points={
"console_scripts": [
"edgar-analytics=edgar_analytics.cli:main",
],
},
classifiers=[
# ------------------------------------------
# Updated and expanded PyPI Trove Classifiers
# ------------------------------------------
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)