-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
74 lines (71 loc) · 2.25 KB
/
Copy pathsetup.py
File metadata and controls
74 lines (71 loc) · 2.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# 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="1.0.7",
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>=1.5,<4",
"numpy>=1.23,<3",
"edgartools>=5.0,<6",
"click>=8.0,<9",
"rich>=12.0,<16",
],
extras_require={
"forecast": [
"statsmodels>=0.13,<1",
],
"valuation": [
"yfinance>=0.2,<2",
],
"cache": [
"diskcache>=5.6,<6",
],
"parquet": [
"pyarrow>=12.0,<24",
],
"test": [
"pytest",
"pytz",
"pytest-xdist",
"pytest-timeout",
"statsmodels>=0.13,<1",
],
},
entry_points={
"console_scripts": [
"edgar-analytics=edgar_analytics.cli:main",
],
},
classifiers=[
# ------------------------------------------
# Updated and expanded PyPI Trove Classifiers
# ------------------------------------------
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)