2016-02-13 04:36:33 +00:00
|
|
|
import sys
|
|
|
|
|
2015-09-26 22:52:54 +00:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2019-03-07 20:04:17 +00:00
|
|
|
exec(compile(open('atrcopy/_version.py').read(), 'atrcopy/_version.py', 'exec'))
|
|
|
|
exec(compile(open('atrcopy/_metadata.py').read(), 'atrcopy/_metadata.py', 'exec'))
|
2015-09-26 22:52:54 +00:00
|
|
|
|
|
|
|
with open("README.rst", "r") as fp:
|
|
|
|
long_description = fp.read()
|
|
|
|
|
2016-02-12 07:40:16 +00:00
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
scripts = ["scripts/atrcopy.bat"]
|
|
|
|
else:
|
|
|
|
scripts = ["scripts/atrcopy"]
|
|
|
|
|
2015-09-26 22:52:54 +00:00
|
|
|
setup(name="atrcopy",
|
2017-05-03 02:43:21 +00:00
|
|
|
version=__version__,
|
|
|
|
author=__author__,
|
|
|
|
author_email=__author_email__,
|
|
|
|
url=__url__,
|
|
|
|
packages=["atrcopy"],
|
|
|
|
include_package_data=True,
|
|
|
|
scripts=scripts,
|
2019-03-05 05:56:31 +00:00
|
|
|
entry_points={"sawx.loaders": 'atrcopy = atrcopy.omnivore_loader'},
|
2017-05-07 05:13:32 +00:00
|
|
|
description="Utility to manage file systems on Atari 8-bit (DOS 2) and Apple ][ (DOS 3.3) disk images.",
|
2017-05-03 02:43:21 +00:00
|
|
|
long_description=long_description,
|
2021-05-04 16:56:00 +00:00
|
|
|
license="MPL 2.0",
|
2017-05-03 02:43:21 +00:00
|
|
|
classifiers=[
|
2017-05-08 18:58:49 +00:00
|
|
|
"Programming Language :: Python :: 3.6",
|
2017-05-03 02:43:21 +00:00
|
|
|
"Intended Audience :: Developers",
|
2021-05-04 16:56:00 +00:00
|
|
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
2017-05-03 02:43:21 +00:00
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
],
|
2018-09-24 18:25:33 +00:00
|
|
|
python_requires = '>=3.6',
|
2017-05-03 02:43:21 +00:00
|
|
|
install_requires = [
|
|
|
|
'numpy',
|
|
|
|
],
|
|
|
|
tests_require = [
|
2017-05-08 18:58:49 +00:00
|
|
|
'pytest>3.0',
|
|
|
|
'coverage',
|
|
|
|
'pytest.cov',
|
2017-05-03 02:43:21 +00:00
|
|
|
],
|
|
|
|
)
|