forked from redmine-gitlab-migrator/redmine-gitlab-migrator
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·32 lines (29 loc) · 917 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
29
30
31
32
#!/usr/bin/env python
from __future__ import unicode_literals
import os
from setuptools import setup
try:
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
README = ''
setup(
name='redmine-gitlab-migrator',
version='1.0.3',
description='Migrate a redmine project to gitlab',
long_description=README,
author='Jocelyn Delalande',
author_email='[email protected]',
license='GPL',
url='https://github/oasiswork/migrate-redmine-to-gitlab/',
packages=['redmine_gitlab_migrator'],
install_requires=['pyyaml', 'requests', 'GitPython', 'pypandoc'],
entry_points={
'console_scripts': [
'migrate-rg = redmine_gitlab_migrator.commands:main'
]
},
test_suite='redmine_gitlab_migrator.tests',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
)