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
|
#!/usr/bin/env python
import os
from setuptools import setup
here = os.path.dirname(__file__)
changes_file = os.path.join(here, 'NEWS.txt')
changes = file(changes_file).read().split('\n\n\n')
changes_in_latest_versions = '\n\n\n'.join(changes[:3])
short_description = 'A Gtk+ time tracking application'
long_description = short_description + '.' # for now
setup(
name='gtimelog',
version='0.2.5dev',
author='Marius Gedminas',
author_email='marius@gedmin.as',
url='http://mg.pov.lt/gtimelog/',
description=short_description,
long_description=long_description + '\n\n' + changes_in_latest_versions,
license='GPL',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Office/Business',
],
packages=['gtimelog'],
package_dir={'gtimelog': 'src/gtimelog'},
package_data={'gtimelog': ['*.glade', '*.png']},
test_suite='gtimelog.test_gtimelog',
zip_safe=False,
entry_points="""
[gui_scripts]
gtimelog = gtimelog.gtimelog:main
""",
# This is true, but pointless, because easy_install PyGTK chokes and dies
# install_requires=['PyGTK'],
)
|