forked from transition-zero/tz-osemosys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (75 loc) · 2.46 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
[project]
name = "tz-osemosys" # Required
dynamic = ["version"]
description = "An OSeMOSYS implementation for the Future Energy Outlook by TransitionZero" # Optional
readme = "README.md" # Optional
requires-python = ">=3.11"
license = {file = "LICENSE.txt"}
keywords = ["energy", "milp", "climate"] # Optional
authors = [
{name = "Lucas Kruitwagen", email = "[email protected]" },
{name = "Ed Gill", email = "[email protected]" },
{name = "Abhishek Shivakumar", email = "[email protected]" },
]
classifiers = [ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pydantic>2",
"pydantic-settings",
"xarray",
"orjson",
"linopy",
]
#maintainers = [
# {name = "A. Great Maintainer", email = "[email protected]" } # Optional
#]
# For a list of valid classifiers, see https://pypi.org/classifiers/
[project.optional-dependencies] # Optional
dev = [
"pre-commit",
"black",
"pytest",
"pytest-order",
"pytest-cov",
"pytest-asyncio",
"mypy",
"tox",
"coverage",
"highspy",
]
cloudpath=[
"cloudpathlib[all]",
]
[project.urls] # Optional
"Homepage" = "https://github.com/transition-zero/tz-osemosys"
"Bug Reports" = "https://github.com/transition-zero/tz-osemosys/issues"
"Funding" = "https://transitionzero.org"
"Source" = "https://github.com/transition-zero/tz-osemosys"
# The following would provide a command line executable called `sample`
# which executes the function `main` from this package when invoked.
# [project.scripts] # Optional
# sample = "sample:main"
# This is configuration specific to the `setuptools` build backend.
# If you are using a different build backend, you will need to change this.
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
# package-data = {"sample" = ["*.dat"]}
[tool.setuptools.packages]
find = {}
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0","setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]