-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.04 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
from setuptools import find_packages,setup
from typing import List
with open("README.md", "r", encoding="utf-8") as f:
long_descriptions = f.read()
AUTHOR_USER_NAME = "tph-kds"
__version__ = "0.0.1"
NAME_PROJECT = "ano_detection"
PACKAGE_NAME = "anomaly_detection_in_transactions"
description = "A python package for applying MLOPs method in realistic-scenarios project."
REPO_NAME = "anomaly_detection_in_transactions"
AUTHOR_EMAIL = "tranphihung8383@gmail.com"
setup(
name= PACKAGE_NAME,
version= __version__ ,
author= AUTHOR_USER_NAME,
author_email=AUTHOR_EMAIL,
description= description,
long_description= long_descriptions, # open("README.md").read()
long_description_content_type="text/markdown",
url = f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
project_urls= {
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
},
package_dir={"": "src"},
install_requires=["pandas","numpy", "torch", "scikit-learn", "mlflow"],
packages=find_packages(where="src"),
)