-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathsetup.py
45 lines (44 loc) · 1.18 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="termdown",
version="1.18.0",
description="Countdown timer for your terminal",
author="Torsten Rehn",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/trehn/termdown",
keywords=[
"console",
"countdown",
"curses",
"stopwatch",
"terminal",
"timer",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
install_requires=[
"click >= 2.0",
"pyfiglet >= 0.7",
"python-dateutil",
"windows-curses ; platform_system=='Windows'",
],
py_modules=['termdown'],
entry_points={
'console_scripts': [
"termdown=termdown:main",
],
},
)