-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to the more modern `pyproject.toml` format per GH-314. Edit `venv` in `.gitignore` to be a bit more generic for developer ease.
- Loading branch information
1 parent
b07b9f6
commit 56313a0
Showing
3 changed files
with
56 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ packrat/lib*/ | |
dist/ | ||
SEIR.egg-info/ | ||
Outcomes.egg-info/ | ||
venv/ | ||
*venv*/ | ||
.venv/ | ||
|
||
# R package manuals | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,57 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
requires = ["setuptools>=61.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
authors = [ | ||
{name = "Joseph Lemaitre", email = "[email protected]"}, | ||
{name = "Joshua kaminski and others", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: OS Independent", | ||
] | ||
description = "Generic epidemic compartmental modeling pipelines with interventions and outcome reporting." | ||
dependencies = [ | ||
"click>=8.1.7", | ||
"confuse", | ||
"dask", | ||
"emcee", | ||
"graphviz", | ||
"matplotlib", | ||
"numba>=0.53.1", | ||
"numpy", | ||
"pandas", | ||
"pyarrow", | ||
"scipy", | ||
"seaborn", | ||
"sympy", | ||
"tqdm", | ||
"xarray", | ||
] | ||
name = "gempyor" | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
version = "2.1" | ||
|
||
[project.optional-dependencies] | ||
aws = ["boto3", "botocore"] | ||
test = ["pytest", "mock"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/HopkinsIDD/flepiMoP" | ||
Issues = "https://github.com/HopkinsIDD/flepiMoP/issues" | ||
|
||
[project.scripts] | ||
flepimop = "gempyor.cli:cli" | ||
flepimop-calibrate = "gempyor.calibrate:calibrate" | ||
gempyor-simulate = "gempyor.simulate:_deprecated_simulate" | ||
|
||
[tool.setuptools] | ||
package-dir = {"" = "src"} | ||
include-package-data = false | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
namespaces = false |
This file was deleted.
Oops, something went wrong.