summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 8dd2764d90fb3d5a1b0062614f7e62ab5914c175 (plain)
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
#!/usr/bin/env python
from setuptools import setup, find_packages


setup(
        name='prompt_toolkit',
        author='Jonathan Slenders',
        version='0.13',
        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 = [
            'docopt',
            'jedi',
            'pygments',
            'six',
            'wcwidth',
        ],
        scripts = [
            'bin/ptpython',
            'bin/ptipython',
        ]
)