-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update optional dependencies and edit pyproject.toml
- Loading branch information
Showing
1 changed file
with
12 additions
and
13 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 |
---|---|---|
|
@@ -10,7 +10,6 @@ authors = [{ name = "Leah Wasser", email = "[email protected]" }] | |
maintainers = [ | ||
{ name = "pyOpenSci", email = "[email protected]" }, # Optional | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
|
@@ -24,35 +23,31 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
] | ||
|
||
|
||
dependencies = [ | ||
"ruamel-yaml>=0.17.21", | ||
"requests", | ||
"python-dotenv", | ||
"pydantic>=2.0", | ||
"python-dotenv", | ||
"requests", | ||
"python-dotenv" | ||
"ruamel-yaml>=0.17.21", | ||
] | ||
|
||
|
||
# This is the metadata that pip reads to understand what versions your package supports | ||
# This is metadata that pip reads to understand what Python versions your package supports | ||
requires-python = ">=3.10" | ||
readme = "README.md" | ||
license = { text = "MIT" } | ||
|
||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pre-commit" | ||
"black", | ||
"flake8", | ||
"pre-commit", | ||
"pytest", | ||
"pytest-cov" | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/pyopensci/pyosmeta/" | ||
"Bug Reports" = "https://github.com/pyopensci/pyosmeta/issues" | ||
"Source" = "https://github.com/pyopensci/pyosmeta/issues" | ||
|
||
|
||
# These are entry points that allow you to surface specific functionality | ||
# for a user to run directly from the package. | ||
[project.scripts] | ||
|
@@ -61,6 +56,7 @@ update-contributors = "pyosmeta.cli.update_contributors:main" | |
update-reviews = "pyosmeta.cli.process_reviews:main" | ||
update-review-teams = "pyosmeta.cli.update_review_teams:main" | ||
|
||
|
||
### Hatch config ### | ||
|
||
[tool.hatch] | ||
|
@@ -78,6 +74,9 @@ dependencies = [ | |
#run = "run-coverage --no-cov" | ||
run-tests = "pytest" | ||
|
||
|
||
### Tool configuration ### | ||
|
||
[tool.black] | ||
line-length = 79 | ||
target-version = ['py310'] | ||
|