-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (23 loc) · 904 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
27
28
from setuptools import setup
setup(
name='issuemapper',
version='0.1-dev',
install_requires=['icalendar',
'PyGithub',
'python-redmine',
'certifi',
'taskw'],
scripts=['issuemapper'],
author='Johannes Wienke',
author_email='[email protected]',
url='https://github.com/languitar/issuemapper',
description='A tool to collect issues from multiple sources '
'(e.g. Redmine or Github) and export them in formats to '
'have a quick overview of all issues (e.g. iCal).',
license='LGPLv3+',
keywords=['issues', 'redmine', 'github', 'ical', 'ticket'],
classifiers=[
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)'
])