Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengSun committed Jan 20, 2024
1 parent ed0ff95 commit 2137c1e
Showing 1 changed file with 13 additions and 28 deletions.
41 changes: 13 additions & 28 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,29 @@
[build-system]
requires = ["setuptools>=61.0", "wheel", "pytest-cov"]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pygeoweaver"
version = "0.8.4"
authors = [
{ name="Geoweaver team", email="[email protected]" },
]
version = "0.8.5"
authors = [{ name="Geoweaver team", email="[email protected]" }]
description = "This is a wrapper package of the Geoweaver app."
readme = "README.md"
requires-python = "^3.7"
requires-python = ">=3.7,<4"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"setuptools",
"requests",
"pydantic",
"ipython",
"pandas"
]

[project.urls]
"Homepage" = "https://github.com/ESIPFed/pygeoweaver"
Homepage = "https://github.com/ESIPFed/pygeoweaver"

[tool.poetry]
name = "pygeoweaver"
version = "0.8.4"
description = "This is a wrapper package of the Geoweaver app."
authors = ["Geoweaver team <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/ESIPFed/pygeoweaver"

[tool.poetry.dependencies]
python = "^3.7"
setuptools = "^60.0"
requests = "^2.28.2"
pydantic = "^1.10.9"
ipython = "^8.14.0"
pandas = "^2.0.2"

[tool.poetry.scripts]
[project.scripts]
gw = "pygeoweaver:__main__"

[tool.pytest.ini_options]
addopts = "-p no:warnings --cov=pygeoweaver --cov-report=html"

0 comments on commit 2137c1e

Please sign in to comment.