forked from italorossi/ishell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ishell
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requires = f.readlines()
setup(
name='ishell',
version=ishell.__version__,
author=u'Ítalo Rossi',
author_email='[email protected]',
description='Build Interactive Shells with Python',
license='MIT',
keywords='cli terminal console shell interactive',
url='http://github.com/italorossi/ishell',
packages=find_packages(exclude=('tests', 'docs')),
long_description='Build Interactive Shells with Python',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
install_requires=requires
)