|
1 | 1 | [tool.poetry]
|
2 |
| -name = "virtual_ecosystem" |
3 |
| -version = "0.1.1a0" |
4 |
| -description = """The package simulates the abiotic, soil, animal and plant components of an ecosystem.""" |
5 | 2 | authors = [
|
6 |
| - |
7 |
| - |
8 |
| - |
9 |
| - "Vivienne Groner <[email protected]>", |
10 |
| - "Taran Rallings <[email protected]>", |
11 |
| - "Olivia Daniel <[email protected]>", |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + "Vivienne Groner <[email protected]>", |
| 7 | + "Taran Rallings <[email protected]>", |
| 8 | + "Olivia Daniel <[email protected]>", |
| 9 | + "Jaideep Joshi <[email protected]>", |
| 10 | + "Anna Rallings <[email protected]>", |
| 11 | + "Priyanga Amarasekare <[email protected]>", |
| 12 | + "Diego Alonso Alvarez <[email protected]>", |
| 13 | + |
| 14 | +] |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 2 - Pre-Alpha", |
| 17 | + "Intended Audience :: Science/Research", |
| 18 | + "License :: OSI Approved :: BSD License", |
| 19 | + "Topic :: Scientific/Engineering", |
12 | 20 | ]
|
| 21 | +description = """An holistic ecosystem simulation model.""" |
| 22 | +homepage = "https://virtual-ecosystem.readthedocs.io/" |
| 23 | +license = "BSD-3-Clause" |
| 24 | +name = "virtual_ecosystem" |
| 25 | +readme = "README.md" |
| 26 | +repository = "https://github.com/ImperialCollegeLondon/virtual_ecosystem" |
| 27 | +version = "0.1.1a4" |
13 | 28 |
|
14 | 29 | [tool.poetry.scripts]
|
15 | 30 | ve_run = "virtual_ecosystem.entry_points:ve_run_cli"
|
16 | 31 |
|
17 | 32 | [tool.poetry.dependencies]
|
18 |
| -python = ">=3.10,<3.12" |
19 |
| -numpy = "^1.23.0" |
20 |
| -tomli = { version = "^2.0.1", python = "<3.11" } |
21 |
| -dpath = "^2.0.6" |
22 |
| -tomli-w = "^1.0.0" |
23 |
| -scipy = "^1.9.0" |
24 |
| -jsonschema = "^4.14.0" |
25 | 33 | Shapely = "^1.8.4"
|
26 |
| -pint = "^0.20.1" |
27 |
| -xarray = "^2024.02.0" |
28 | 34 | dask = "^2023.6.0"
|
| 35 | +dpath = "^2.0.6" |
| 36 | +jsonschema = "^4.14.0" |
29 | 37 | netcdf4 = "^1.6.5"
|
| 38 | +numpy = "^1.23.0" |
| 39 | +pint = "^0.20.1" |
| 40 | +python = ">=3.10,<3.12" |
| 41 | +scipy = "^1.9.0" |
| 42 | +tomli = {version = "^2.0.1", python = "<3.11"} |
| 43 | +tomli-w = "^1.0.0" |
30 | 44 | tqdm = "^4.66.2"
|
| 45 | +xarray = "^2024.02.0" |
31 | 46 |
|
32 | 47 | [tool.poetry.group.types.dependencies]
|
33 |
| -types-jsonschema = "^4.16.1" |
34 | 48 | types-dataclasses = "^0.6.6"
|
| 49 | +types-jsonschema = "^4.16.1" |
35 | 50 | types-tqdm = "^4.66.0.20240106"
|
36 | 51 |
|
37 | 52 | [tool.poetry.group.test.dependencies]
|
| 53 | +hypothesis = "^6.54.2" |
38 | 54 | pytest = "^7.1.2"
|
39 | 55 | pytest-cov = "^3.0.0"
|
40 | 56 | pytest-datadir = "^1.4.1"
|
41 | 57 | pytest-flake8 = "^1.1.1"
|
42 |
| -pytest-mypy = "^0.10.3" |
43 | 58 | pytest-mock = "^3.8.1"
|
44 |
| -hypothesis = "^6.54.2" |
| 59 | +pytest-mypy = "^0.10.3" |
45 | 60 |
|
46 | 61 | [tool.poetry.group.devenv.dependencies]
|
47 | 62 | black = "^22.6.0"
|
48 | 63 | flake8 = "^4.0.1"
|
49 |
| -mypy = "^1.5.1" |
50 |
| -pre-commit = "^2.19.0" |
| 64 | +flake8-docstrings = "^1.6.0" |
| 65 | +ipykernel = "^6.15.0" |
| 66 | +ipython = "^8.4.0" |
51 | 67 | isort = "^5.12.0"
|
| 68 | +matplotlib = "^3.5.2" |
52 | 69 | mdformat = "^0.7.14"
|
53 | 70 | mdformat_frontmatter = "^0.4.1"
|
54 | 71 | mdformat_tables = "^0.4.1"
|
55 |
| -flake8-docstrings = "^1.6.0" |
56 |
| -ipython = "^8.4.0" |
57 |
| -ipykernel = "^6.15.0" |
58 |
| -matplotlib = "^3.5.2" |
| 72 | +mypy = "^1.5.1" |
| 73 | +pre-commit = "^2.19.0" |
59 | 74 |
|
60 | 75 | [tool.poetry.group.docs.dependencies]
|
61 |
| -sphinx = "^7.0.0" |
62 |
| -sphinxcontrib-bibtex = "^2.4.2" |
63 |
| -myst-nb = "^1.0.0" |
64 |
| -sphinx-rtd-theme = "^1.0.0" |
65 | 76 | autodocsumm = "^0.2.8"
|
| 77 | +myst-nb = "^1.0.0" |
66 | 78 | pydocstyle = "^6.1.1"
|
| 79 | +sphinx = "^7.0.0" |
| 80 | +sphinx-rtd-theme = "^1.0.0" |
| 81 | +sphinxcontrib-bibtex = "^2.4.2" |
67 | 82 | sphinxcontrib-mermaid = "^0.9.2"
|
68 | 83 |
|
69 | 84 | [build-system]
|
70 |
| -requires = ["poetry-core>=1.2.0"] |
71 | 85 | build-backend = "poetry.core.masonry.api"
|
| 86 | +requires = ["poetry-core>=1.2.0"] |
0 commit comments