-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 946 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 946 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="SomAnomaly",
version="1.0.0",
author="Young Geun Kim",
author_email="dudrms33@g.skku.edu",
description="Anomaly detection using self-organizing maps",
long_description=long_description,
url="https://github.com/ygeunkim/somanomaly",
license="LICENSE",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7"
],
keywords=[
"Self-Organizing Maps",
"Anomaly Detection"
],
install_requires=["numpy", "scipy", "pandas", "plotly", "matplotlib", "scikit-learn", "tqdm", "argparse"]
)