-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 924 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (33 loc) · 924 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='visual_timer',
version='0.2',
description="Visual timer is a simple terminal based timer",
author="nerd1pypi",
authoremail="nerd1pypi@cock.li",
license="MIT",
url="https://github.com/nerd-1/visual_timer",
keywords=[
"console",
"countdown",
"curses",
"terminal",
"timer",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console :: Curses",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
install_requires=[],
py_modules=['visual_timer'],
)