-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (37 loc) · 1.04 KB
/
setup.cfg
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
# dlitz 2022
#
# Ref: https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# Ref: https://packaging.python.org/en/latest/tutorials/packaging-projects/
#
# Usage: python3 -m build .
[metadata]
name = adf2dms
version = 0.0.1
author = Darsey Litzenberger
author_email = [email protected]
license_files = LICENSE.txt
# See https://pypi.org/classifiers/
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Operating System :: OS Independent
Topic :: Utilities
description = Convert Amiga disk images from ADF to DMS (DiskMasher) format
long_description_content_type = text/markdown
long_description = file: README.md
url = https://github.com/dlitz/adf2dms
project_urls =
Bug Tracker = https://github.com/dlitz/adf2dms/issues
[options]
python_requires = >=3.9
packages =
adf2dms
setup_requires =
setuptools
install_requires =
crccheck
[options.entry_points]
console_scripts =
adf2dms = adf2dms.main:main