-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (27 loc) · 931 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (27 loc) · 931 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Author(s): Tomas Jansky <Tomas.Jansky@progress.com>
Copyright: (C) 2022 Flowmon Networks a.s.
SPDX-License-Identifier: BSD-3-Clause
Setup script with necessary information to create python package.
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ftanalyzer",
version="1.0.0",
author="Flowmon Networks a.s.",
author_email="support@flowmon.com",
description="Library evaluating network flows. It contains different flow validation models.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3-Clause",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
packages=setuptools.find_packages(),
)