-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.py
39 lines (35 loc) · 1.47 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
from setuptools import setup
description = "Simple command line pomodoro app with visualization of statistics"
long_description = """
Simple command line pomodoro app with visualization of statistics.
The Pomodoro technique is a time management technique for improving productivity.
Check (https://en.wikipedia.org/wiki/Pomodoro_Technique) for more details.
The code is based on : http://code.activestate.com/recipes/577358-pomodoro-timer/
"""
setup(
name="pomodoro-cli",
version="0.3.0",
author="mehdi cherti",
author_email="[email protected]",
description=description,
long_description=long_description,
license="MIT",
keywords="pomodoro productivity",
url="https://github.com/mehdidc/pomodoro",
zip_safe=False, # the package can run out of an .egg file
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
platforms='any',
scripts=['pomodoro', 'pomostat'],
include_package_data=True,
data_files=['clock.mp3'],
install_requires=['clize', 'sigtools', 'pandas', 'matplotlib'],
)