Skip to content

Commit 3643fae

Browse files
committed
pyproject
1 parent 33fb330 commit 3643fae

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pyproject.toml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[build-system]
2+
requires = ["flit_core >=2,<4"]
3+
build-backend = "flit_core.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "rete"
7+
author = "Wh1t3Fox"
8+
author-email = "[email protected]"
9+
home-page = "https://github.com/retenet/rete"
10+
requires = [
11+
"docker==4.4.0",
12+
"elevate==0.1.3",
13+
"jsonschema==3.2.0",
14+
"PyYAML==5.3.1",
15+
"rich==9.5.1"
16+
]
17+
requires-python = ">=3.6"
18+
classifiers=[
19+
"Development Status :: 5 - Production/Stable",
20+
"Intended Audience :: End Users/Desktop",
21+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
22+
"Programming Language :: Python :: 3",
23+
"Operating System :: POSIX :: Linux",
24+
"Environment :: Console",
25+
]
26+
description-file = "README.md"
27+
28+
[tool.flit.metadata.requires-extra]
29+
dev = [
30+
"black==20.8b1",
31+
"ipython==7.19.0",
32+
"pytest==6.2.1"
33+
]
34+
doc = ["sphinx"]
35+
36+
[tool.flit.scripts]
37+
rete = rete.cli:main

0 commit comments

Comments
 (0)