summaryrefslogtreecommitdiff
path: root/setup.py
blob: 5f3955d17b37271bd291f3fb63a38e9ece98f237 (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
from setuptools import setup

import ansicolor


setup(
    name="ansicolor",
    version=ansicolor.__version__,
    description=(
        "A library to produce ansi color output and colored highlighting and diffing"
    ),
    author="Martin Matusiak",
    author_email="numerodix@gmail.com",
    url="https://github.com/numerodix/ansicolor",
    packages=[
        "ansicolor",
    ],
    classifiers=[
        "License :: OSI Approved :: Apache Software License",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: Implementation :: CPython",
    ],
    # don't install as zipped egg
    zip_safe=False,
)