aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 151e089e489121e512c6b17d2e3a7f0f5c96b08b (plain)
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
41
42
43
44
45
46
47
from setuptools import find_packages
from setuptools import setup
from z80count.z80count import version


def readme():
    try:
        return open("README.md").read()
    except:
        return ""


setup(
    name="z80count",
    version=version,
    description="A tool to annotate Z80 assembler with cycle counts.",
    long_description=readme(),
    long_description_content_type="text/markdown",
    # 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://git.usebox.net/z80count/about/",
    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",
        ]
    },
)