-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (48 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "pyc2e"
version = "0.0.5"
readme = "README.rst"
description = "Engine management & script injection for the Creatures Evolution Engine"
authors = [
{name="pushfoo"}
]
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
]
keywords=[
"modding",
"tools",
"creatures",
"script injection",
"caos"
]
dependencies = []
[project.urls]
Homepage = "https://github.com/pushfoo/pyc2e"
Issues = "https://github.com/pushfoo/pyc2e/issues"
Source = "https://github.com/pushfoo/pyc2e"
[project.optional-dependencies]
dev = [
'pytest>=7.1,<8',
]
[project.scripts]
pyc2e = "pyc2e.__main__:main"
[tool.setuptools.packages.find]
include = ["pyc2e", "pyc2e.*"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
norecursedirs = ["doc", ".venv", "env", "dist"]