-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (60 loc) · 1.56 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
[project]
name = "epigrass"
version = "3.0.3"
authors = [
{name="Flávio Codeço Coelho", email="[email protected]"},
{name="Claudia Torres Codeço", email="[email protected]"}
]
description = "Epidemiological Geo-Referenced Analysis and Simulation System"
readme = "README.md"
license = {text="GPLv3"}
requires-python = ">=3.12"
classifiers = [
"License :: OSI Approved :: GPLv3 License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: researchers",
"Natural Language :: English",
"Topic :: Scientific/Epidemiology",
]
dependencies = [
"altair>=5.5.0",
"cython>=3.0.11",
"dbfread>=2.0.7",
"epimodels>=0.4.3",
"fiona>=1.10.1",
"geopandas>=1.0.1",
"geoviews>=1.14.0",
"holoviews>=1.20.0",
"hvplot>=0.11.2",
"matplotlib>=3.10.0",
"networkx>=3.4.2",
"numpy>=2.2.0",
"nx-altair>=0.1.6",
"pandas>=2.2.3",
"panel>=1.5.5",
"pweave>=0.30.3",
"pymysql>=1.1.1",
"redis>=5.2.1",
"scikit-image>=0.25.0",
"shapely>=2.0.6",
"sqlalchemy>=2.0.36",
"sqlobject>=3.11.0",
"tqdm>=4.67.1",
]
[project.urls]
Homepage = "https://epigrass.readthedocs.io"
Source = "https://github.com/fccoelho/epigrass"
[tool.setuptools]
packages = ["Epigrass"]
[tool.uv]
package = true
dev-dependencies = [
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
]
[project.scripts]
epirunner = "Epigrass.manager:main"