forked from italorossi/ishell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 780 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 780 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
26
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='ishell',
version='0.1.2',
author=u'Ítalo Rossi',
author_email='italorossib@gmail.com',
description='Build Interactive Shells with Python',
license='MIT',
keywords='cli terminal console shell interactive',
url='http://github.com/italorossi/ishell',
packages=['ishell'],
long_description='Build Interactive Shells with Python',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
],
install_requires=[
"readline",
]
)