-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (26 loc) · 836 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·27 lines (26 loc) · 836 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
#!/bin/env python
try:
from setuptools import setup,find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup,find_packages
setup(
name="pomodorotasks",
packages=find_packages(exclude=['tests' 'tests/*']),
install_requires=['tasklib', 'pygobject', 'dbus-python','future'],
entry_points={
'console_scripts': [
'pomodoro-tasks-client = pomodorotasks.client:main'
],
'gui_scripts': [
'pomodoro-tasks-daemon = pomodorotasks.daemon:main',
]
},
include_package_data=True,
package_data={'pomodorotasks': ['images/*.png', 'gui/*.glade']},
test_suite='nose.collector',
tests_require=['nose'],
setup_requires=['pbr>=1.9', 'setuptools>=17.1'],
pbr=True,
)