-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 921 Bytes
/
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
from setuptools import setup
setup(
name='escape',
packages=['escape'], # this must be the same as the name above
version='1.1',
description='Simple Terminal Styling for Python',
author='Syed K Abbas',
author_email='[email protected]',
url='https://github.com/skabbass1/escape', # use the URL to the github repo
download_url='https://github.com/skabbass1/escape/archive/1.1.tar.gz',
license='MIT',
keywords=[
'terminal-colors',
'ansi',
'terminal-emulators',
'ansi-escape-codes',
'command-line',
'console',
'color',
'cli',
],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
),
)