-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
75 lines (66 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "pcbasic"
authors = [
{ name = "Rob Hagemans", email = "[email protected]" },
]
description = "A free, cross-platform emulator for the GW-BASIC family of interpreters."
readme = "README.md"
license = { text = "GPLv3" }
requires-python = ">=2.7.17,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
dependencies = [
"pysdl2-dll",
"pyserial",
'importlib_resources; python_version < "3.7"',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Topic :: System :: Emulators",
"Topic :: Software Development :: Interpreters",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
]
keywords = [
"emulator", "interpreter", "basic", "retro", "legacy", "gwbasic", "basica", "pcjr", "tandy",
]
dynamic = [
"version",
]
[project.urls]
"Homepage" = "http://pc-basic.org"
"Bug Tracker" = "https://github.com/robhagemans/pcbasic/issues"
"Source Code" = "https://github.com/robhagemans/pcbasic/"
"Documentation" = "https://robhagemans.github.io/pcbasic/doc/2.0/"
[project.optional-dependencies]
full = [
"pyparallel", "pyaudio",
]
dev = [
"pyparallel", "pyaudio",
"lxml", "markdown", "pylint", "coverage", "cx_Freeze", "pillow", "colorama", "toml",
]
[project.scripts]
pcbasic = "pcbasic:main"
[build-system]
requires = [
"hatchling",
"hatch-nodejs-version",
]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "nodejs"
path = "./pcbasic/basic/data/meta.json"
[tool.hatch.build]
artifacts = [
"/doc/*.html",
"/pcbasic/basic/data/release.json",
"/pcbasic/data/USAGE.txt",
]
[tool.hatch.build.targets.sdist]
include = [
"/pcbasic",
"GPL3.txt",
"/*.md",
]