Skip to content

Commit

Permalink
Update optional dependencies and edit pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
willingc authored and lwasser committed Feb 25, 2024
1 parent 6440acf commit fe96d53
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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]
Expand All @@ -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]
Expand All @@ -78,6 +74,9 @@ dependencies = [
#run = "run-coverage --no-cov"
run-tests = "pytest"


### Tool configuration ###

[tool.black]
line-length = 79
target-version = ['py310']
Expand Down

0 comments on commit fe96d53

Please sign in to comment.