-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python tests job to directly use dev-requirements.txt.
- Loading branch information
1 parent
1f612b4
commit 8d43fe5
Showing
2 changed files
with
22 additions
and
5 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
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,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", | ||
|
@@ -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" | ||
|