forked from gluetool/gluetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (86 loc) · 3.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from setuptools import setup
# setuptools-scm would extract version from a git tag, but one has to mention setuptools-scm in
# `setup_requires` field, and pip does not play well with that one, and it's all kinds of messy
# and I see no light :((
VERSION = '1.25'
if __name__ == '__main__':
setup(name='gluetool',
version=VERSION,
packages=[
'gluetool',
'gluetool.pylint',
'gluetool.tests'
],
entry_points={
'console_scripts': [
'gluetool = gluetool.tool:main',
'gluetool-html-log = gluetool.html_log:main'
]
},
package_data={
'gluetool': [
'py.typed'
]
},
data_files=[
('gluetool_modules', [
'gluetool_modules/bash_completion.py',
'gluetool_modules/bash_completion.moduleinfo',
'gluetool_modules/dep_list.py',
'gluetool_modules/dep_list.moduleinfo',
'gluetool_modules/yaml_pipeline.py',
'gluetool_modules/yaml_pipeline.moduleinfo'
]),
('assets/html-log', [
'assets/html-log/prism.css',
'assets/html-log/prism.js',
'assets/html-log/semantic.min.css',
'assets/html-log/semantic.min.js'
])
],
install_requires=[
'beautifulsoup4==4.6.3',
'colorama==0.3.9',
'docutils==0.14',
'enum34==1.1.6; python_version == "2.7"',
'future==0.16.0',
'Jinja2==2.10',
'lxml==4.2.4',
'mock==3.0.5',
'mypy-extensions==0.4.1',
'packaging==17.1',
'raven==6.9.0',
'requests==2.19.1',
'requests-toolbelt==0.8.0',
'ruamel.yaml==0.16.12',
'six==1.12.0',
'Sphinx==1.5.2',
'sphinx-rtd-theme==0.4.1',
'tabulate==0.8.2',
'typing==3.7.4; python_version == "2.7"',
'typing-extensions>=3.7.4.1',
'urlnormalizer==1.2.0',
'pyparsing==2.3.0',
'MarkupSafe==1.1.0'
],
description='Python framework for constructing command-line pipelines',
# pylint: disable=line-too-long
long_description='Gluetool is a command line centric generic framework useable for glueing modules into pipeline',
author='Miroslav Vadkerti, Milos Prchlik and others',
author_email='[email protected], [email protected]',
license='BSD',
platforms='UNIX',
url='https://gluetool.readthedocs.org/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Utilities'
])