-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (91 loc) · 2.73 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (91 loc) · 2.73 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
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cge-core"
version = "0.8.0"
description = "A practitioner-first, Pyomo-based CGE modelling system with validated Hosoe, IFPRI, and CAMCGE implementations"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE", "LICENSE_NIST.txt"]
maintainers = [
{ name = "James Matthew Miraflor", email = "jbmiraflor@up.edu.ph" },
]
keywords = [
"cge",
"computable-general-equilibrium",
"pyomo",
"economics",
"policy-simulation",
"ifpri-standard-cge",
"camcge",
"social-accounting-matrix",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pyomo>=6.0,<6.10; python_version < '3.10'",
"pyomo>=6.0; python_version >= '3.10'",
"dill>=0.3",
"pandas>=1.3",
"amplpy>=0.16,<1",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"tomli>=2.0; python_version < '3.11'",
]
docs = [
"jupyter-book>=0.15,<2",
"sphinxcontrib-mermaid>=2.0.2,<3",
]
dev = [
"pytest>=7.0",
"tomli>=2.0; python_version < '3.11'",
"build>=1.0",
"jupyter-book>=0.15,<2",
"sphinxcontrib-mermaid>=2.0.2,<3",
"ruff>=0.8,<1",
]
[project.scripts]
cge = "cge_core.cli:main"
[project.urls]
Homepage = "https://github.com/miraflor/CGE-core"
Documentation = "https://miraflor.github.io/CGE-core/"
Repository = "https://github.com/miraflor/CGE-core"
Changelog = "https://github.com/miraflor/CGE-core/blob/main/CHANGELOG.md"
Issues = "https://github.com/miraflor/CGE-core/issues"
[tool.setuptools.packages.find]
include = ["cge_core*"]
[tool.setuptools.package-data]
cge_core = [
"data/*/*.csv",
"models/camcge/data/*.csv",
"experimental/spec/examples/*.cge.md",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
filterwarnings = ["ignore::DeprecationWarning"]
markers = [
"external_ifpri: requires the separately supplied official IFPRI source directory",
"public_ifpri: uses only the independently authored redistributable synthetic fixture",
"public_ifpri_solver: public IFPRI test that must execute with a real NLP solver",
"solver: requires a usable local NLP solver",
]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]