From 5f7d94e32812cb02ecde0a9f4fa965002f551c86 Mon Sep 17 00:00:00 2001 From: Alexis Roda Date: Sat, 27 Jul 2019 10:09:52 +0200 Subject: Make a python package. --- setup.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8e0cf64 --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +from setuptools import find_packages +from setuptools import setup + +version = "0.5.0" + +setup( + name="z80count", + version=version, + description="A tool to annotate Z80 assembler with cycle counts.", + long_description="", + # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + classifiers=[ + "Environment :: Console", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development", + ], + keywords="", + author="Juan J. Martinez", + author_email="jjm@usebox.net", + url="https://github.com/reidrac/z80count", + license="MIT", + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=[ + ], + extras_require={ + "dev": [ + "pytest", + "tox", + ] + }, + entry_points={ + "console_scripts": [ + "z80count = z80count.z80count:main", + ] + }, +) -- cgit v1.2.3