-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.47 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.47 KB
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
import os
import setuptools
def read(fname):
return open(
os.path.join(os.path.dirname(__file__), fname), encoding="utf-8"
).read()
setuptools.setup(
name='dynflowparser',
version='0.0.0',
setup_requires=['Jinja2', 'pytz'],
scripts=[
'dynflowparser/bin/__init__.py',
'dynflowparser_export_tasks/bin/__init__.py'],
entry_points={
'console_scripts': [
'dynflowparser=dynflowparser.bin:main',
'dynflowparser-export-tasks=dynflowparser_export_tasks.bin:main',
],
},
packages=setuptools.find_packages(),
package_data={
'dynflowparser.html.css': ['*'],
'dynflowparser.html.js': ['*'],
'dynflowparser.templates': ['*'],
},
license='GPLv3',
author='Pablo Fernández Rodríguez',
url='https://github.com/pafernanr/dynflowparser',
keywords='theforeman dynflow',
description="""
Get sosreport dynflow files and generates user friendly html pages for
tasks, plans, actions and steps.""",
long_description_content_type='text/markdown',
long_description=read("README.md"),
classifiers=[
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)