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
|
|
|
|
|
2017-05-03 02:43:21 +00:00
|
|
|
execfile('atrcopy/_metadata.py')
|
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,
|
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,
|
|
|
|
license="GPL",
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License (GPL)",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
],
|
|
|
|
install_requires = [
|
|
|
|
'numpy',
|
|
|
|
],
|
|
|
|
tests_require = [
|
|
|
|
'pytest',
|
|
|
|
],
|
|
|
|
)
|