-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.53 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pcse", "pcse.conf", "pcse.base", "pcse.crop", "pcse.crop.nutrients", "pcse.input", "pcse.settings", "pcse.soil", "pcse.tests", "pcse.tests.test_data"]
[project]
name = "pcse"
version = "6.0.12"
authors = [
{ name="Allard de Wit", email="allard.dewit@wur.nl" },
{ name="Herman Berghuijs", email="herman.berghuijs@wur.nl" },
]
maintainers = [
{ name="Allard de Wit", email="allard.dewit@wur.nl" },
{ name="Herman Berghuijs", email="herman.berghuijs@wur.nl" },
]
description = 'PCSE is a framework for developing and runnning crop simulation models, it includes an implementation of the WOFOST and LINTUL crop simulation models and the LINGRA grassland simulation model.'
readme = "README.rst"
requires-python = ">=3.9"
dependencies = [
'pydispatcher>=2.0.7',
'PyYAML>=5.1',
'openpyxl>=3.0',
'requests>=2.0',
'pandas>=2.0',
'traitlets-pcse==5.0.0.dev',
'dotmap>=1.3',
]
license = "EUPL-1.2"
license-files = [
"LICENSE",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/ajwdewit/pcse"
documentation = "https://pcse.readthedocs.io"
repository = "https://github.com/ajwdewit/pcse.git"