-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·39 lines (33 loc) · 1.06 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Author(s): Tomas Jansky <[email protected]>
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="ftprofiler",
version="1.1.0",
author="Flowmon Networks a.s.",
author_email="[email protected]",
description="Tool for creating network profile from netflow data in a specified time interval.",
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",
],
entry_points={
"console_scripts": [
"ftprofiler=ftprofiler.core:main",
],
},
python_requires=">=3.6",
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
)