-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (70 loc) · 2.66 KB
/
setup.py
File metadata and controls
81 lines (70 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
datakit-github
---------------
This plugin provides light-weight GitHub integration for the `DataKit command-line tool <https://datakit.ap.org>`_.
It's intended to streamline the process of generating a GitHub project and linking it to a local
directory containing a newly created project skeleton.
DataKit is a project by The Associated Press designed to streamline data analysis workflows.
To learn more about the wider DataKit ecosystem and how AP uses it, check out the
`official documentation for DataKit <https://datakit.ap.org>`_.
More information on the datakit-github plugin can be found below:
* Documentation: http://datakit-github.readthedocs.io/en/latest/
* GitHub: https://github.com/associatedpress/datakit-github
* PyPI: https://pypi.python.org/pypi/datakit-github
* Free and open source software: `ISC license <https://github.com/associatedpress/datakit-github/blob/master/LICENSE>`_
"""
from setuptools import setup, find_packages
requirements = [
'cliff',
'datakit-core',
'PyGithub',
]
test_requirements = [
'flake8==4.0.1',
'pytest==7.1.2',
'pytest-vcr==1.0.2'
]
setup(
name='datakit-github',
version='0.2.1',
description="Light-weight GitHub integration for datakit workflows.",
long_description=__doc__,
long_description_content_type='text/x-rst',
author="Serdar Tumgoren",
author_email='zstumgoren@gmail.com',
url='https://github.com/associatedpress/datakit-github',
packages=find_packages(),
include_package_data=True,
entry_points={
'datakit.plugins': [
'github integrate=datakit_github.commands:Integrate',
]
},
install_requires=requirements,
license="ISC license",
zip_safe=False,
keywords='datakit',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
tests_require=test_requirements,
project_urls={
"Documentation": "http://datakit-github.readthedocs.io/en/latest/",
"Maintainer": "https://github.com/associatedpress",
"Source": "https://github.com/associatedpress/datakit-github",
"Tracker": "https://github.com/associatedpress/datakit-github/issues"
},
)