forked from gtimelog/gtimelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·75 lines (63 loc) · 1.96 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
import os
import re
import io
from setuptools import setup
here = os.path.dirname(__file__)
def read(filename):
with io.open(os.path.join(here, filename), 'r', encoding='utf-8') as f:
return f.read()
metadata = dict(
(k, eval(v)) for k, v in
re.findall('^(__version__|__author__|__url__|__licence__) = (.*)$',
read('src/gtimelog/__init__.py'), flags=re.MULTILINE)
)
version = metadata['__version__']
changes = read('NEWS.rst').split('\n\n\n')
changes_in_latest_versions = '\n\n\n'.join(changes[:3])
older_changes = '''
Older versions
~~~~~~~~~~~~~~
See the `full changelog`_.
.. _full changelog: https://github.com/gtimelog/gtimelog/blob/master/NEWS.rst
'''
short_description = 'A Gtk+ time tracking application'
long_description = (
read('README.rst') +
'\n\n' +
changes_in_latest_versions +
'\n\n' +
older_changes
)
setup(
name='gtimelog',
version=version,
author='Marius Gedminas',
author_email='marius@gedmin.as',
url='http://mg.pov.lt/gtimelog/',
description=short_description,
long_description=long_description,
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
# 2.6 might work, but I can't test it myself -- recent
# python-gobject versions dropped support for Python 2.6
'Topic :: Office/Business',
],
packages=['gtimelog'],
package_dir={'gtimelog': 'src/gtimelog'},
package_data={'gtimelog': ['*.ui', '*.png']},
test_suite='gtimelog.tests',
zip_safe=False,
entry_points="""
[gui_scripts]
gtimelog = gtimelog.main:main
""",
# This is true, but pointless, because PyGObject cannot be installed via
# setuptools/distutils
# install_requires=['PyGObject'], # or PyGTK
)