-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·19 lines (17 loc) · 780 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·19 lines (17 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup
setup(name='redmine-to-omnifocus',
version='1.1',
description='Import Redmine issues into OmniFocus',
author='Guy Bolton King',
author_email='guy@waftex.com',
url='https://github.com/guyboltonking/redmine-to-omnifocus',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Bug Tracking',
'Operating System :: MacOS :: MacOS X'],
install_requires=['BeautifulSoup>=3.0',
'appscript>=0.20',
'gntp'],
scripts=['redmine-to-omnifocus'])