-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 765 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 765 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = '0.9.0'
setup(
name = 'console',
license='MIT',
version = __version__,
description = 'A Python port of Symfony2 Console Component.',
author = 'Sébastien Eustace',
author_email = 'sebastien.eustace@gmail.com',
url = 'https://github.com/SDisPater/console-component',
packages = find_packages(),
install_requires = ['ordereddict', 'python-Levenshtein'],
tests_require=['nose'],
test_suite='nose.collector',
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)