-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·66 lines (60 loc) · 1.9 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
63
64
65
66
"""
datakit-project
---------------
A project-skeleton generator for use with the `datakit <https://pypi.python.org/pypi/datakit-core/>`_ framework.
* `Code <https://github.com/associatedpress/datakit-project>`_
* `Docs <http://datakit-project.readthedocs.io/en/latest/>`_
"""
from setuptools import setup, find_packages
PROJECT = 'datakit-project'
VERSION = '0.4.0'
setup(
name=PROJECT,
version=VERSION,
description="A datakit plugin to generate new projects.",
long_description=__doc__,
long_description_content_type='text/x-rst',
author="Serdar Tumgoren",
author_email='[email protected]',
license="ISCL",
url='https://datakit.ap.org',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='datakit',
platforms=['Any'],
install_requires=[
'click',
'cliff',
'cookiecutter>=1.6.0',
'datakit-core',
'prettytable'
],
packages=find_packages(),
include_package_data=True,
entry_points={
'datakit.plugins': [
'project create = datakit_project:Create',
'project templates = datakit_project:Templates',
'project templates update = datakit_project:TemplatesUpdate',
]
},
test_suite='tests',
tests_require=[
'pytest',
'pytest-catchlog',
],
project_urls={
'Maintainer': 'https://github.com/associatedpress',
'Source': 'https://github.com/associatedpress/datakit-project',
'Tracker': 'https://github.com/associatedpress/datakit-project/issues'
},
zip_safe=False,
)