-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.28 KB
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>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "retrotype"
version = "1.1.0"
description = "Debuging and conversion tool for 1980s magazine type-in programs"
readme = "README.md"
authors = [{ name = "Michael Buhidar", email = "[email protected]" }]
maintainers = []
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
keywords = ["commodore64", "vic20", "commodore", "atari", "compute", "ahoy",
"run", "magazine", "c64"]
dependencies = []
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["flake8", "mypy", "black", "pre-commit",]
test = ["pytest", "coverage",]
# [tool.setuptools]
# package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["retrotype"] # ["."] by default
exclude = ["tests"] # empty by default
namespaces = true # true by default
[project.urls]
Homepage = "https://github.com/mbuhidar/retrotype"
# CLI scripts
[project.scripts]
retrotype_cli = "retrotype.retrotype_cli:command_line_runner"