-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·51 lines (45 loc) · 1.61 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
"""
Datakit
-------
`datakit-core` is a pluggable command-line tool for creating custom
data science workflows.
It's intended to be used with one or more compatible plugins. Check out the
`Associated Pess Github account <https://github.com/search?q=topic%3Adatakit-cli+org%3Aassociatedpress&type=Repositories>`_
for an evolving set of plugins or learn
`how to write your own <http://datakit-core.readthedocs.io/en/latest/developers.html#creating-plugins>`_.
"""
from setuptools import setup, find_packages
setup(
name='datakit-core',
version='0.3.2',
description="A pluggable command-line tool for custom data science workflows.",
long_description=__doc__,
author="Serdar Tumgoren",
author_email='[email protected]',
url='https://github.com/associatedpress/datakit-core',
license="ISCL",
keywords='datakit',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Environment :: Console',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
install_requires=['cliff'],
entry_points={
'console_scripts': [
'datakit=datakit.main:main',
],
'datakit.plugins': []
},
test_suite='tests',
tests_require=['pytest', 'pytest-mock'],
zip_safe=False,
)