-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (39 loc) · 1.22 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
38
39
40
41
42
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
HERE = os.path.dirname(__file__)
setup(
name = "x256",
version = '0.0.3',
description = "x256: manipulate xterm 256 color codes",
author = "Martin Garcia",
author_email = "[email protected]",
license = "MIT",
url = "https://github.com/magarcia/python-x256",
packages = ["x256"],
platforms = "POSIX",
long_description = ("x256 can convert colors from rgb or hex to xterm 256 "
"colors, and convert colors from xterm 256 colors to "
"rgb or hex. "),
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: OS Independen",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'x256 = x256.x256:entry',
]
},
)