diff --git a/LICENSE b/LICENSE
index bf13cb1..8c134fc 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
BSD 3-Clause License
-Copyright (c) 2020, Selim Firat Yilmaz
+Copyright (c) 2023, Selim Firat Yilmaz
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
diff --git a/README.rst b/README.rst
index a5d3e91..3bac418 100644
--- a/README.rst
+++ b/README.rst
@@ -55,7 +55,7 @@ Python Streaming Anomaly Detection (PySAD)
**PySAD** is an open-source python framework for anomaly detection on streaming multivariate data.
-`Documentation `_
+`Documentation `__
Features
========
@@ -118,6 +118,8 @@ Alternatively, you can install the library directly using the source code in Git
**Required Dependencies:**
+
+
* Python 3.8
* numpy==1.23.5
* scikit-learn>=1.3.0
@@ -138,7 +140,7 @@ Quick Links
* `Github Repository `_
-* `Documentation `_
+* `Documentation `__
* `PyPI Package `_
diff --git a/docs/badges.rst b/docs/badges.rst
index 765b951..a54a3ad 100644
--- a/docs/badges.rst
+++ b/docs/badges.rst
@@ -52,4 +52,4 @@ Python Streaming Anomaly Detection (PySAD)
**PySAD** is an open-source python framework for anomaly detection on streaming multivariate data.
-`Documentation `_
+`Documentation `__
diff --git a/docs/installation.rst b/docs/installation.rst
index 942a5b4..8b62ea4 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -21,6 +21,8 @@ Alternatively, you can install the library directly using the source code in Git
**Required Dependencies:**
+
+
* Python 3.8
* numpy==1.23.5
* scikit-learn>=1.3.0
diff --git a/docs/quick_links.rst b/docs/quick_links.rst
index 3ea8301..4f0076b 100644
--- a/docs/quick_links.rst
+++ b/docs/quick_links.rst
@@ -3,7 +3,7 @@ Quick Links
* `Github Repository `_
-* `Documentation `_
+* `Documentation `__
* `PyPI Package `_
diff --git a/setup.py b/setup.py
index 8ca0e2e..4c4d6e0 100644
--- a/setup.py
+++ b/setup.py
@@ -42,9 +42,10 @@
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
],
- python_requires=">=3.6"
+ python_requires=">=3.8"
)