-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
pyproject.toml
36 lines (32 loc) · 947 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pipe"
description = "Module enabling a sh like infix syntax (using pipes)"
readme = "README.md"
license = {text = "MIT License"}
dynamic = ["version"]
authors = [
{name = "Julien Palard", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.8"
[project.urls]
repository = "https://github.com/JulienPalard/Pipe"
[tool.setuptools]
py-modules = [
"pipe",
]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "pipe.__version__"