forked from llorracc/Q-Investment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "q-investment"
version = "0.1.0"
description = "A Python class implementing the Abel-Hayashi 'Marginal Q' model of investment"
readme = "README.md"
requires-python = ">=3.8,<3.11"
license = {file = "LICENSE"}
authors = [
{name = "Christopher D. Carroll"},
]
keywords = ["economics", "investment", "q-model", "abel-hayashi", "capital"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Economics",
]
dependencies = [
"numpy>=1.23.0,<1.25",
"scipy>=1.7.0",
"matplotlib>=3.3.0",
]
[project.optional-dependencies]
# Dolo dependencies (install dolo itself separately with --no-deps)
# Dolo's metadata has conflicts but these versions work at runtime
# Install with: uv pip install --no-deps dolo==0.4.9.12 && uv pip install -e ".[dolo]"
dolo = [
"pandas>=1.5.0,<2.0",
"numba>=0.56.0,<0.57",
"quantecon>=0.10.0",
"xarray>=0.15.0,<0.16",
"ruamel.yaml>=0.16.10,<0.17",
"multipledispatch>=0.6.0,<0.7",
"ipython>=7.34.0,<8.0",
"dolang>=0.0.10,<0.0.11",
"interpolation>=2.2.0",
]
dev = [
"pytest==8.3.5",
"pytest-cov==6.1.1",
"jupyter==1.1.1",
"notebook==6.5.4",
]
all = [
"q-investment[dolo,dev]",
]
[project.urls]
Homepage = "https://github.com/llorracc/Q-Investment"
Repository = "https://github.com/llorracc/Q-Investment"
Documentation = "http://www.econ2.jhu.edu/people/ccarroll/public/lecturenotes/Investment/qModel/"
[tool.setuptools]
packages = ["Qmod"]
[tool.setuptools.package-data]
Qmod = ["*.py"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--verbose",
"--strict-markers",
"--tb=short",
]
[tool.uv]
# Dev dependencies are defined in [project.optional-dependencies]