-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from kddubey/pyprojecttoml
setup.py -> pyproject.toml, and mv tap to src
- Loading branch information
Showing
10 changed files
with
75 additions
and
68 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ __pycache__ | |
.DS_Store | ||
*.json | ||
*.egg-info | ||
build | ||
.eggs | ||
.coverage | ||
dist |
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0.0", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "typed-argument-parser" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Jesse Michel", email = "[email protected]" }, | ||
{name = "Kyle Swanson", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{name = "Jesse Michel", email = "[email protected]" }, | ||
{name = "Kyle Swanson", email = "[email protected]" }, | ||
] | ||
description = "Typed Argument Parser" | ||
readme = "README.md" | ||
license = { file = "LICENSE.txt" } | ||
dependencies = [ | ||
"docstring-parser >= 0.15", | ||
"packaging", | ||
"typing-inspect >= 0.7.1", | ||
] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Typing :: Typed", | ||
] | ||
keywords = [ | ||
"typing", | ||
"argument parser", | ||
"python", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev-no-pydantic = [ | ||
"pytest", | ||
"pytest-cov", | ||
"flake8", | ||
] | ||
dev = [ | ||
"typed-argument-parser[dev-no-pydantic]", | ||
"pydantic >= 2.5.0", | ||
] | ||
|
||
[tool.setuptools] | ||
package-dir = {"" = "src"} | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "tap.__version__"} | ||
|
||
[tool.setuptools.package-data] | ||
tap = ["py.typed"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/swansonk14/typed-argument-parser" | ||
Issues = "https://github.com/swansonk14/typed-argument-parser/issues" | ||
# download_url=f"https://github.com/swansonk14/typed-argument-parser/archive/refs/tags/v_{__version__}.tar.gz" |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.