-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 1.99 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 = "apsimngpy"
version = '1.5.2'
description = "APSIM next generation package interface"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "Richard Magala", email = "magalarich20@gmail.com" }
]
keywords = ["python", "APSIM Next Generation", "pythonnet", "crop modeling"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
requires-python = ">=3.10,<3.14"
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7",
"xmltodict>=0.13.0",
"requests>=2.31.0",
"pythonnet>=3.0.1",
"rasterio>=1.3.8",
"shapely>=2.0.1",
"clr>=1.0.3",
"geopandas>=0.13.2",
'seaborn >=0.13.2',
"pandas>=2.0.3",
"geopy>=2.4.1",
"joblib>=1.3.2",
"sqlalchemy>=2.0",
"matplotlib",
"psutil>=6.0.0",
"tenacity",
"typer",
'pymoo',
'tqdm==4.67.1',
"wrapdisc==2.5.0",
"SALib==1.5.2",
'python-dotenv>=1.0.1,<2.0.0',
"summarytools>=0.3.0",
'watchdog==6.0.0',
'loguru == 0.7.3',
"rich>=13.7.0",
'pydantic>=2.12'
]
[project.urls]
Homepage = "https://github.com/MAGALA-RICHARD/apsimNGpy.git"
[tool.setuptools]
packages = ["apsimNGpy"]
include-package-data = true
[tool.setuptools.package-data]
"apsimNGpy" = [
"data/*.apsimx",
"*.met",
'./apsimNGpy/*.dll',
'./apsimNGpy/dll/*.dll',
"experiment/*.py",
"examples/*.png",
"images/*.png",
"*.ini"
]
[project.scripts]
apsim = "apsimNGpy.cli.cli:main_entry_point"
bp = "apsimNGpy.cli.set_ups:apsim_bin_path"
apsim_bin_path = "apsimNGpy.cli.set_ups:apsim_bin_path"