-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
89 lines (85 loc) · 2.57 KB
/
setup.py
File metadata and controls
89 lines (85 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python3
"""
EcoAnalyst - Setup Configuration
A library for understanding ecosystems, economies, and abstract
physically interacting networks through graph-based modeling.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README for long description
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ecoanalyst",
version="2.0.0",
author="Mike Lee",
author_email="",
description="A library for modeling and analyzing mass, energy, and information flows in ecosystems, economies, and physically interacting networks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MikeHLee/ecoanalyst",
project_urls={
"Bug Tracker": "https://github.com/MikeHLee/ecoanalyst/issues",
"Documentation": "https://github.com/MikeHLee/ecoanalyst#readme",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10",
install_requires=[
"networkx>=3.2",
"numpy>=1.26.0",
"pandas>=2.0.0",
"scipy>=1.10.0",
"matplotlib>=3.7.0",
"pydantic>=2.6.0",
],
extras_require={
"api": [
"fastapi>=0.110.0",
"uvicorn>=0.27.0",
"httpx>=0.26.0",
],
"ml": [
"scikit-learn>=1.3.0",
"pymc>=5.7.0",
],
"mcp": [
"mcp>=0.9.0",
],
"viz": [
"seaborn>=0.12.0",
"plotly>=5.18.0",
],
"db": [
"psycopg2-binary>=2.9.9",
],
"full": [
"fastapi>=0.110.0",
"uvicorn>=0.27.0",
"httpx>=0.26.0",
"scikit-learn>=1.3.0",
"pymc>=5.7.0",
"mcp>=0.9.0",
"seaborn>=0.12.0",
"plotly>=5.18.0",
"psycopg2-binary>=2.9.9",
],
},
entry_points={
"console_scripts": [
"ecoanalyst=ecoanalyst.cli:main",
],
},
)