-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.02 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "psll"
dynamic = ["version"]
description = "Read the latest Real Python tutorials"
readme = "README.md"
authors = [{ name = "Marcin Konowalczyk", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Other",
"Development Status :: 3 - Alpha",
"Environment :: Console",
]
keywords = ["compiler", "macros", "code-golf", "pyramid-scheme", "programming-language"]
dependencies = [
"more-itertools>=8.5.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"black>=23.3.0",
"flake8>=6.0.0",
"mypy>=1.2.0",
"types-setuptools",
]
[project.urls]
Homepage = "https://github.com/MarcinKonowalczyk/psll-lang"
[project.scripts]
psll = "psll.__main__:argparse_and_main"
[tool.setuptools]
packages = ["psll"]