forked from mc68-net/r8format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.28 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
[project]
version = '0.0.3'
name = 'r8format'
description = 'Retrocomputing 8-bit file format manipulation tools'
readme = 'README.md'
dependencies = []
authors = [
{ name = 'Curt J. Sampson', email = '[email protected]' },
{ name = 'Stuart Croy', email = '[email protected]' },
]
[project.scripts]
# bastok
basdump = 'bastok.cli.basdump:main'
blines = 'bastok.cli.blines:main'
detok = 'bastok.cli.detok:main'
# binary
msx-dasm = 'binary.cli.msx_dasm:main'
# cmtconv
analyze-cmt = 'cmtconv.cli.analyze_cmt:main'
cmtconv = 'cmtconv.cli.cmtconv:main'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages]
find = { where = ['psrc'] }
[tool.setuptools]
py-modules = ['pytest_pt']
#
# The packages.find specification above, for whatever reason, ignores all
# top-level modules (i.e., `*.py` files that can be imported).
#
# We work around this by adding the top-level modules we need to include
# to `py-modules` above. This configuration directive is mentioned but
# not documented, but it seems to add additional modules to the list that
# `packages.find` comes up with.
#
# Note that these must be Python module names, not filenames.
#
[tool.pytest.ini_options]
testpaths = ['psrc']