-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name="my_pipeline",
version="0.1.0",
author="Othmane Belarbi",
author_email="[email protected]",
keywords=[
"network intrusion detection",
"dataset",
"internet of things",
"federated learning",
],
packages=find_packages(where="."),
description="A pipeline for labeling network traffic data in IoT systems",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
python_requires=">=3.11.2",
install_requires=[
line.rstrip("") for line in open("./requirements.txt", "r").readlines()
],
dependency_links=[],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
)