forked from larose/utt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 993 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 993 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
from distutils.core import setup
import os
description = "A minimalist command-line time tracking application"
long_description = (
"Ultimate Time Tracker (utt) is a minimalist command-line time tracking "
"application. It is intented for people who need to report their time on "
"another system and want a preliminary time sheet."
)
setup(
author="Mathieu Larose",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
"Topic :: Utilities"
],
keywords="time tracking",
license='GPL',
description=description,
long_description=long_description,
name='utt',
packages=['utt'],
scripts=[os.path.join('bin', 'utt')],
url="https://github.com/larose/utt",
version='1.1',
)