-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
30 lines (29 loc) · 959 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
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup, find_packages
setup(
name='operator-manifest',
version='2.0.1',
long_description="A python library for processing operator manifests.",
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
url='https://github.com/containerbuildsystem/operator-manifest',
install_requires=[
'ruamel.yaml',
'jsonschema',
],
package_data={'operator_manifest': ['schemas/*.json']},
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
license="BSD-3-Clause",
python_requires='>=3.6',
entry_points={
'console_scripts': [
'operator-manifest = operator_manifest.cli:main',
],
},
)