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


long_description = open(
    os.path.join(
        os.path.dirname(__file__),
        'README.rst'
    )
).read()


version = '0.56'  # Don't forget to update in prompt_toolkit.__init__!

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