Skip to content

Commit

Permalink
Update pyproject.toml information.
Browse files Browse the repository at this point in the history
Update python tests job to directly use dev-requirements.txt.
  • Loading branch information
derekpierre committed Jul 17, 2024
1 parent 1f612b4 commit 8d43fe5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install Dependencies
run: pip install .[test]
run: pip install . -r dev-requirements.txt

- name: Tests (Coverage)
if: matrix.python-version == '3.12'
Expand Down
25 changes: 21 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tool.poetry]
[project]
name = "atxm"
version = "0.3.0"
authors = [
"NuCypher <[email protected]>",
{ name="NuCypher", email="[email protected]" },
]
description = "Automatic Transaction Machine (ATxM) for Ethereum"
license = {file = "LICENSE"}
readme = "README.md"
repository = "https://github.com/nucypher/atxm"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
Expand All @@ -22,10 +23,26 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]

[tool.poetry.urls]
[tool.poetry]
name = "atxm"
version = "0.3.0"
authors = ["NuCypher"]
description = "Automatic Transaction Machine (ATxM) for Ethereum."

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {test = { file = ["dev-requirements.txt"] }}

[project.urls]
Homepage = "https://github.com/nucypher/atxm"
Issues = "https://github.com/nucypher/atxm/issues"

[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"


[tool.poetry.dependencies]
python = ">=3.9,<4"
Expand Down

0 comments on commit 8d43fe5

Please sign in to comment.