-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 925 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="b23-flowlib",
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=find_packages(exclude=['test*']),
package_data={
'flowlib': ['logging.conf', 'init/*'],
},
include_package_data=True,
install_requires=['nipyapi>=0.13.3', 'pyyaml', 'jinja2>=2.7', 'kazoo>=2.6.1', 'numpy>=1.17.0', 'networkx>=2.3', 'tabulate'],
author="David Kegley",
author_email="[email protected]",
description="A library for composing and deploying NiFi flows from YAML",
keywords="b23 flowlib NiFi dataflow",
url="https://b23.io",
download_url="https://github.com/B23admin/b23-flowlib/releases/latest",
project_urls={
"Source Code": "https://github.com/B23admin/b23-flowlib"
},
entry_points={
'console_scripts': [
'flowlib=flowlib.main:main',
],
}
)