-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.02 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
"""doc
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
__version__ = "0.1.0"
PROJECT_REPO_NAME = "LogAnomalyDetect"
AUTHOR_NAME = "Ladipo Ipadeola"
AUTHOR_USER_NAME = "rileydrizzy"
AUTHOR_EMAIL = "[email protected]"
if __name__ == "__main__":
setup(
name=PROJECT_REPO_NAME,
version=__version__,
license="MIT",
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
description="A machine learning model to predict log of softwares",
long_description=long_description,
long_description_content="text/markdown",
url=f"https://github.com/{AUTHOR_USER_NAME}/{PROJECT_REPO_NAME}",
project_urls={
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{PROJECT_REPO_NAME}/issues",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10",
keywords=["deep learning", "tensorflow", "AI"],
)