aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 8e0cf646e54ef4b978aa5c0a27567aa6c42c4592 (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
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",
        ]
    },
)