Skip to content

Commit 35d3f59

Browse files
committed
Add pyproject.toml
1 parent 0540bc9 commit 35d3f59

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

pyproject.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[project]
2+
name = "python-rson"
3+
authors = [
4+
{ name="Xpo Development", email="[email protected]" },
5+
]
6+
description = "Python implementation of RSON (Reference JSON)"
7+
readme = "README.md"
8+
requires-python = ">=3.8"
9+
classifiers = [
10+
"Programming Language :: Python :: 3",
11+
"License :: OSI Approved :: MIT License",
12+
"Operating System :: OS Independent",
13+
]
14+
dynamic = ["version"]
15+
16+
[project.urls]
17+
Homepage = "https://github.com/xpodev/python-rson"
18+
Issues = "https://github.com/xpodev/python-rson/issues"
19+
20+
[build-system]
21+
requires = ["setuptools", "wheel"]
22+
build-backend = "setuptools.build_meta"
23+
24+
[tool.setuptools]
25+
package-dir = {"" = "src"}
26+
27+
[tool.setuptools.dynamic]
28+
version = {attr="rson.__version__"}

0 commit comments

Comments
 (0)