-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
30 lines (27 loc) · 898 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from selectmenu import __author__, __version__
with open("README.rst", "r") as fp:
long_description = fp.read()
setup(
name="SelectMenu",
author=__author__,
author_email="[email protected]",
description=(
"SelectMenu is the input form to choose from menu by arrow keys."),
long_description=long_description,
version=__version__,
license="MIT License",
url="https://github.com/alice1017/SelectMenu",
packages=find_packages(),
install_requires=["prompt-toolkit==1.0.15"],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'License :: OSI Approved :: MIT License',
'Topic :: Terminals',
'Topic :: Utilities',
]
)