setup.py
author frostbane <frostbane@programmer.net>
Fri, 04 Mar 2016 08:15:26 +0900
branchfeature/refactor
changeset 79 3f7593f1b0ae
parent 75 274a8eb61d88
child 93 8d13c1019a02
permissions -rwxr-xr-x
refactor into separate classes add --index and --output option to ishow add --index option to iadd

#!/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",
    py_modules=["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",
    ]
)