forked from PyPSA/linopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (71 loc) · 1.73 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "linopy"
dynamic = ["version"]
description = "Linear optimization with N-D labeled arrays in Python"
readme = "README.md"
authors = [{ name = "Fabian Hofmann", email = "fabianmarikhofmann@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"scipy",
"bottleneck",
"toolz",
"numexpr",
"xarray>=2023.9.0",
"dask>=0.18.0",
"polars",
"tqdm",
"deprecation",
]
[project.urls]
Homepage = "https://github.com/PyPSA/linopy"
Source = "https://github.com/PyPSA/linopy"
[project.optional-dependencies]
docs = [
"ipython",
"numpydoc",
"sphinx",
"sphinx_rtd_theme",
"sphinx_book_theme",
"nbsphinx",
"nbsphinx-link",
"gurobipy",
"ipykernel",
"matplotlib",
]
dev = [
"pytest",
"pytest-cov",
"netcdf4",
"pre-commit",
"paramiko",
"gurobipy",
"highspy",
]
solvers = [
"gurobipy",
"highspy>=1.5.0; python_version < '3.12'",
"highspy>=1.7.1.dev1; python_version >= '3.12'",
"cplex; platform_system != 'Darwin' and python_version < '3.12'",
"mosek",
"mindoptpy; python_version < '3.12'",
"coptpy",
"xpress; platform_system != 'Darwin' and python_version < '3.11'",
"pyscipopt; platform_system != 'Darwin'",
]
[tool.setuptools.packages.find]
include = ["linopy"]
[tool.setuptools_scm]
write_to = "linopy/version.py"