-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.21 KB
/
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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fluentpy"
version = "2.1.1"
description = "Python wrapper for stdlib (and your) objects to give them a fluent interface."
readme = "Readme.md"
authors = [{ name = "Martin Häcker", email = "[email protected]" }]
license = { text = "ISC" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3",
]
keywords = ["wrapper", "smalltalk", "ruby", "fluent", "interface", "functional"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com./dwt/fluent"
Documentation = "https://fluentpy.readthedocs.io/"
[tool.setuptools]
packages = ["fluentpy"]
include-package-data = true
[tool.setuptools.exclude-package-data]
"*" = ["*.tests"]
[project.optional-dependencies]
tests = ["pyexpect", "pytest"]
docs = [
"sphinx >= 1.8.3",
"sphinx-rtd-theme >= 0.4.2",
"myst-parser",
"sphinx-autobuild",
]
[tool.pytest]
testpaths = ["fluent_test.py"]
dev = ["twine"]