-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (55 loc) · 1.65 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
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
"""
datakit-data
---------------
A `datakit <https://pypi.python.org/pypi/datakit-core/>`_ plugin to simplify use of
Amazon S3 as a data store for data science projects.
* `Code <https://github.com/associatedpress/datakit-data>`_
* `Docs <http://datakit-data.readthedocs.io/en/latest/>`_
"""
from setuptools import setup, find_packages
requirements = [
'awscli',
'cliff',
'datakit-core>=0.2.1',
]
test_requirements = [
'pytest'
'pytest-catchlog'
'pytest-mock==1.5.0',
]
setup(
name='datakit-data',
version='0.3.0',
description="A datakit plugin to manage data assets on AWS S3.",
long_description=__doc__,
author="Serdar Tumgoren",
author_email='stumgoren@ap.org',
url='https://github.com/associatedpress/datakit-data',
packages=find_packages(),
include_package_data=True,
entry_points={
'datakit.plugins': [
'data init= datakit_data:Init',
'data push= datakit_data:Push',
'data pull= datakit_data:Pull',
]
},
install_requires=requirements,
license="ISC license",
zip_safe=False,
keywords='datakit',
classifiers=[
'Development Status :: 3 - 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
)