-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
59 lines (53 loc) · 2.07 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
# -*- coding: utf8 -*-
"""
A setuptools based setup module for ocp-network-split project.
See:
* https://packaging.python.org/en/latest/distributing.html
* https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import codecs
import os
setup(
name='ocp-network-split',
# version scheme:
# - "x.y.1" under development, will become "x.y+1.0" when released
# - "x.y.0" released version, there is a matching git tag
version='0.3.1',
description=(
'OCP 4 platform agnostic firewall based network split tool '
'for testing network disruptions on zone level.'),
url='http://gitlab.com/mbukatov/ocp-network-split/',
author='Martin Bukatovič',
author_email='[email protected]',
license='Apache License 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Quality Assurance',
'Topic :: System :: Networking :: Firewalls',
'Topic :: System :: Clustering',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Development Status :: 3 - Alpha',
],
keywords='openshift, firewall',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=['PyYAML'],
include_package_data=True,
entry_points={
'console_scripts': [
'ocp-network-split-setup=ocpnetsplit.main:main_setup',
'ocp-network-split-multisetup=ocpnetsplit.main:main_multisetup',
'ocp-network-split-sched=ocpnetsplit.main:main_sched',
],
},
# https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
project_urls={
'Documentation': 'https://mbukatov.gitlab.io/ocp-network-split',
'Bug Reports': 'https://gitlab.com/mbukatov/ocp-network-split/-/issues',
'Source': 'https://gitlab.com/mbukatov/ocp-network-split/',
},
)