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


setup(
        name='prompt_toolkit',
        author='Jonathan Slenders',
        version='0.10',
        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', 'docopt', 'six',

            # TODO: add wcwidth when released and stable on pypi
            # 'wcwidth',

            # Required for the Python repl
            'jedi',
        ],
        scripts = [
            'bin/ptpython',
            'bin/ptipython',
        ]
)