-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (56 loc) · 1.74 KB
/
setup.py
File metadata and controls
63 lines (56 loc) · 1.74 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
DataKit GitLab plugin
---------------------
`datakit-gitlab` is a plugin for `datakit <https://datakit.ap.org/>`_ to
streamline the process of integrating your project with a GitLab repository.
For more information, see `the project's home page <https://github.com/associatedpress/datakit-gitlab>`_.
"""
from setuptools import setup, find_packages
requirements = [
'cliff',
'datakit-core',
'python-gitlab>=2.5.0'
]
test_requirements = [
'pytest',
'pytest-catchlog',
'pytest-mock==1.5.0',
'responses==0.6.0'
]
setup(
name='datakit-gitlab',
version='0.6.0',
description="Commands to manage project integration with Gitlab.",
long_description=__doc__,
author="Serdar Tumgoren",
author_email='stumgoren@ap.org',
url='https://github.com/associatedpress/datakit-gitlab',
packages=find_packages(),
include_package_data=True,
entry_points={
'datakit.plugins': [
'gitlab integrate=datakit_gitlab:Integrate',
'gitlab issues add=datakit_gitlab:issues.Add',
]
},
install_requires=requirements,
license="ISC license",
zip_safe=False,
keywords='datakit-gitlab',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements
)