-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
131 lines (121 loc) · 3.18 KB
/
pyproject.toml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
authors = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "PRIMO - The P&A Project Optimizer"
dependencies = [
"appengine-python-standard",
"censusgeocode",
"folium",
"geopandas",
"highspy",
"haversine",
"ipyfilechooser",
"ipyleaflet",
"ipywidgets",
"kneed",
"matplotlib",
"networkx",
"notebook",
"numpy",
"openpyxl",
"pandas",
"pyarrow",
"pyomo",
"pyscipopt",
"python-dotenv",
"scikit-learn",
"rasterio",
"xlsxwriter",
]
dynamic = ["version"]
keywords = [
"PRIMO",
"MERP",
"NEMRI",
"methane emissions",
"optimization",
"process modeling",
"operations research",
"well plugging",
]
license = {file = "LICENSE.md"}
maintainers = [
]
name = "primo-optimizer"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9, <3.13"
[project.optional-dependencies]
dev = [
"addheader",
"black",
"isort",
"linkify-it-py",
"myst-parser",
"nbsphinx",
"pre-commit",
"pylint",
"sphinx",
"sphinxcontrib-spelling",
"sphinx-rtd-theme",
]
test = [
"pytest",
"pytest-cov",
"pytest-ipywidgets[notebook]",
"pytest-playwright"
]
gurobi = [
"gurobipy"
]
[project.scripts]
stagedfright = "stagedfright:main"
[project.urls]
Documentation = "https://primo.readthedocs.io/en/latest/"
Download = "https://github.com/NEMRI-org/primo-optimizer/releases"
Homepage = "https://edx.netl.doe.gov/nemri/"
Source = "https://github.com/NEMRI-org/primo-optimizer"
Tracker = "https://github.com/NEMRI-org/primo-optimizer/issues"
[tool.isort]
import_heading_firstparty = "User-defined libs"
import_heading_stdlib = "Standard libs"
import_heading_thirdparty = "Installed libs"
profile = "black"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
src_paths = ["primo"]
[tool.setuptools]
platforms = ["windows", "linux"]
py-modules = ["stagedfright"]
[tool.setuptools.dynamic]
version = {attr = "primo.RELEASE"}
[tool.setuptools.packages.find]
#where = [".", ".stagedfright"]
include = ["primo*"]
[tool.setuptools.package-data]
"*" = ["*.xlsx"]