Skip to content

Commit

Permalink
metadata for project
Browse files Browse the repository at this point in the history
  • Loading branch information
soldni committed Jan 17, 2023
1 parent 403c71c commit e451b53
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "trouting"
version = "0.3.2"
version = "0.3.3"
description = "Trouting (short for Type Routing) is a simple class decorator that allows to define multiple interfaces for a method that behave differently depending on input types."
authors = [
{name = "Luca Soldaini", email = "[email protected]" }
Expand All @@ -11,25 +11,20 @@ requires-python = ">=3.8"
dependencies = [
"typing_extensions>=4.3.0"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]

[project.urls]
"Homepage" = "https://github.com/soldni/trouting"
"Repository" = "https://github.com/soldni/trouting"
"Bug Tracker" = "https://github.com/soldni/trouting/issues"


[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
trouting = ["py.typed"]

[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0.0",
"wheel"
]
Homepage = "https://github.com/soldni/trouting"
Source = "https://github.com/soldni/trouting"
Tracker = "https://github.com/soldni/trouting/issues"

[project.optional-dependencies]
dev = [
Expand All @@ -45,6 +40,19 @@ dev = [
"Flake8-pyproject>=1.1.0"
]

[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0.0",
"wheel"
]

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
trouting = ["py.typed"]

[tool.black]
line-length = 79
include = '\.pyi?$'
Expand Down

0 comments on commit e451b53

Please sign in to comment.