-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (35 loc) · 1.09 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
import json
from setuptools import setup, find_namespace_packages
with open('ignition/pkg_info.json') as fp:
_pkg_info = json.load(fp)
with open("DESCRIPTION.md", "r") as description_file:
long_description = description_file.read()
setup(
name='ignition-framework',
version=_pkg_info['version'],
author='IBM',
description='IBM CP4NA RM driver framework',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IBM/ignition",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
],
packages=find_namespace_packages(include=['ignition*']),
include_package_data=True,
install_requires=[
'connexion[flask]==3.0.6',
'kafka-python==2.0.2',
'networkx==2.5.1',
'frozendict==2.0.2',
'Jinja2==3.1.4',
'requests==2.32.3',
'click==8.0.1'
],
entry_points='''
[console_scripts]
ignition=ignition.cli.entry:init_cli
'''
)