setup.py
author John Kozak <jk@thameslighter.net>
Fri, 14 Dec 2018 13:07:34 +0000
changeset 94 c34c3ad7a25d
parent 93 8d13c1019a02
permissions -rwxr-xr-x
update to 4.8 API

#!/usr/bin/env python

from setuptools import setup

setup(
    name = "artemis",
    version = __import__("artemis").__version__,
    author = "Dmitriy Morozov",
    author_email = "dmitriy@mrzv.org",
    description = "Issue tracking for mercurial or git",
    url = "https://github.com/mrzv/artemis",
    packages=["artemis"],
    scripts=["git-artemis"],
    install_requires=["mercurial"],
    zip_safe = False,
    license="BSD",
    classifiers = [
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: POSIX",
        "Programming Language :: Python",
        "Topic :: Software Development :: Version Control",
    ]
)