Skip to content

Commit

Permalink
Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
albertyw committed Nov 12, 2023
1 parent c3e69ef commit 268586a
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pyproject.toml
@@ -1,3 +1,40 @@
[project]
name = "syspath"
authors = [
{name = "Albert Wang", email = "git@albertyw.com"},
]
description = "Easily add common paths to sys.path"
requires-python = ">=3.7"
keywords = ["python", "path", "utility"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Typing :: Typed",
]
dependencies = []
dynamic = ["version", "readme"]

[project.urls]
"Homepage" = "https://github.com/albertyw/syspath"

[tool.setuptools.dynamic]
version = {attr = "syspath.__version__.__version__"}
readme = {file = "README.md", content-type="text/markdown"}

[options.package_data]
syspath = ["py.typed"]

[tool.ruff]
select = ["E", "F", "B"]

Expand Down

0 comments on commit 268586a

Please sign in to comment.