summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 2fffed7e60a88ba5cba00432809a701e71d6262c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup, find_packages


setup(
        name='prompt_toolkit',
        author='Jonathan Slenders',
        version='0.26',
        license='LICENSE.txt',
        url='https://github.com/jonathanslenders/python-prompt-toolkit',
        description='Library for building powerful interactive command lines in Python',
        long_description='',
        packages=find_packages('.'),
        install_requires = [
            'pygments',
            'six>=1.8.0',
            'wcwidth',
        ],
)