Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit e1cac1c

Browse files
committed
Bring back setup.py
1 parent 7022c18 commit e1cac1c

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

setup.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import sys
2+
from setuptools import setup, find_packages
3+
4+
if sys.version_info.major < 3:
5+
sys.exit("Error: Please upgrade to Python3")
6+
7+
8+
def get_long_description():
9+
with open("README.rst") as fp:
10+
return fp.read()
11+
12+
13+
setup(name="python-cli-ui",
14+
version="0.7.1",
15+
description="Build Nice User Interfaces In The Terminal",
16+
long_description=get_long_description(),
17+
url="https://github.com/SuperTanker/python-cli-ui",
18+
author="Dimitri Merejkowsky",
19+
packages=find_packages(),
20+
include_package_data=True,
21+
install_requires=[
22+
"colorama",
23+
"tabulate",
24+
"unidecode",
25+
],
26+
classifiers=[
27+
"Programming Language :: Python :: 3.5",
28+
"Programming Language :: Python :: 3.6",
29+
],
30+
entry_points={
31+
"console_scripts": [
32+
"tsrc = tsrc.cli.main:main",
33+
]
34+
}
35+
)

0 commit comments

Comments
 (0)