-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (31 loc) · 1.07 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup
from colorize import APP
def read_description():
with open("README.rst") as fd:
return fd.read()
setup(
name="colorize",
version=APP.version,
description=APP.description,
long_description=read_description(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
],
keywords="interface,command line",
author="Miguel Ángel García",
url="https://github.com/magmax/colorize",
license="MIT",
packages=["colorize"],
entry_points={"console_scripts": ["colorize = colorize.__main__:main"]},
)