-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.29 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
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xpp"
dynamic = ["version"]
description = "The x++ programming language."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10, <4"
authors = [
{ name = "iiPython", email = "ben@iipython.dev" },
]
keywords = [
"interpreter",
"language",
"parser",
"xpp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Interpreters",
]
[project.optional-dependencies]
tests = [
"rich",
]
[project.scripts]
caffeine = "caffeine.__main__:main"
xpp = "xpp.__main__:main"
[project.urls]
"Bug Reports" = "https://github.com/iiPythonx/xpp/issues"
Homepage = "https://github.com/iiPythonx/xpp"
Source = "https://github.com/iiPythonx/xpp"
[tool.hatch.version]
path = "src/xpp/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/xpp", "src/caffeine"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"