-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 958 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
#! /usr/bin/env python
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Libraries :: Python Modules']
REQUIREMENTS = ['termcolor >= 1.0.0']
setup(name='great-justice',
author='Patryk Zawadzki',
author_email='[email protected]',
description='Debug every ZIG',
version = '2012.6.8',
packages = find_packages(),
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
platforms=['any'],
use_2to3 = True,
zip_safe=True)