-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
37 lines (33 loc) · 1.24 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
from os.path import join as path_join, dirname
from setuptools import setup, find_packages
version = '0.1.2'
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_reqs = fh.read().split()
setup(
name='gitlab-project-export',
version=version,
description=('Simple python project for exporting gitlab projects '
'with Export Project feature in GitLab API.'),
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
author='Robert Vojcik',
author_email='[email protected]',
url='https://github.com/rvojcik/gitlab-project-export',
download_url='https://github.com/rvojcik/gitlab-project-export/archive/master.tar.gz',
packages=find_packages(),
install_requires = install_reqs,
scripts=[
'gitlab-project-export.py',
'gitlab-project-import.py',
],
keywords=['gitlab-backup', 'gitlab-export', 'export', 'gitlab', 'backup'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)