atrcopy/setup.py

48 lines
1.4 KiB
Python
Raw Permalink Normal View History

import sys
2015-09-26 22:52:54 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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",
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.",
long_description=long_description,
2021-05-04 16:56:00 +00:00
license="MPL 2.0",
classifiers=[
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
2021-05-04 16:56:00 +00:00
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires = '>=3.6',
install_requires = [
'numpy',
],
tests_require = [
'pytest>3.0',
'coverage',
'pytest.cov',
],
)