-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
52 lines (44 loc) · 993 Bytes
/
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
from setuptools import setup, find_packages
runtime = set([
'insights-core',
])
develop = set([
'flake8',
'pytest>=3.6',
'jinja2',
'ipython',
'jupyter',
'pytest-cov'
])
docs = set([
'Sphinx',
'nbsphinx',
'sphinx_rtd_theme',
'recommonmark',
'ipython',
])
testing = set([
'coverage==4.4',
'pytest==3.6',
'pytest-cov==2.4.0',
'mock==2.0.0',
])
linting = set([
'flake8==2.6.2',
])
if __name__ == "__main__":
setup(
name="insights-core-tutorials",
version="0.0.2",
description="Insights Core Rule, Parser and Combiner Tutorials",
author="Red Hat, Inc.",
packages=find_packages(),
install_requires=list(runtime),
extras_require={
'develop': list(runtime | develop | docs | linting | testing),
'docs': list(docs),
'linting': list(linting),
'testing': list(testing)
},
include_package_data=True
)