-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (23 loc) · 915 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import shutil
shutil.copyfile('version', 'GTG/plugins/reminder/version')
setup(name = 'reminder',
version = open('version', 'r+').read().split()[0],
description = 'Getting Things GNOME! reminder plugin',
long_description = 'Populating at and cron jobs from GTG',
author = 'Alexey Aksenov',
author_email = '[email protected]',
url = 'http://github/',
packages = ['GTG.plugins.reminder'],
package_data = {'GTG.plugins.reminder': ['../*.gtg-plugin', 'version', '*.ui']},
classifiers = (
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
),
license = "GPL-3"
)