Skip to content

Commit

Permalink
chore: add more package metadata (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner authored Oct 1, 2022
1 parent 8c4afd2 commit 7165709
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@ name = "deptry"
version = "0.0.1"
description = "A command line utility to check for obsolete, missing and transitive dependencies in a Python project."
authors = ["Florian Maas <[email protected]>"]
maintainers = ["Mathieu Kniewallner <[email protected]>"]
repository = "https://github.com/fpgmaas/deptry"
documentation = "https://fpgmaas.github.io/deptry/"
readme = "README.md"
license = "MIT"
packages = [
{include = "deptry"}
{ include = "deptry" }
]
keywords = ["dependency", "poetry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]

[tool.poetry.dependencies]
Expand Down Expand Up @@ -50,7 +60,11 @@ ignore_missing_imports = true

[tool.deptry]
exclude = [
'venv','.venv','docs','tests','scripts'
"venv",
".venv",
"docs",
"tests",
"scripts",
]
ignore_missing = ["tomllib"]

Expand Down

0 comments on commit 7165709

Please sign in to comment.