Skip to content

Commit eaa3b7f

Browse files
committed
updated setup.py, readme and docs.
1 parent be42b91 commit eaa3b7f

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2020, Selim Firat Yilmaz
3+
Copyright (c) 2023, Selim Firat Yilmaz
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Python Streaming Anomaly Detection (PySAD)
5555

5656
**PySAD** is an open-source python framework for anomaly detection on streaming multivariate data.
5757

58-
`Documentation <https://pysad.readthedocs.io/en/latest/>`_
58+
`Documentation <https://pysad.readthedocs.io/en/latest/>`__
5959

6060
Features
6161
========
@@ -118,6 +118,8 @@ Alternatively, you can install the library directly using the source code in Git
118118
119119
120120
**Required Dependencies:**
121+
122+
121123
* Python 3.8
122124
* numpy==1.23.5
123125
* scikit-learn>=1.3.0
@@ -138,7 +140,7 @@ Quick Links
138140

139141
* `Github Repository <https://github.com/selimfirat/pysad/>`_
140142

141-
* `Documentation <http://pysad.readthedocs.io/>`_
143+
* `Documentation <http://pysad.readthedocs.io/>`__
142144

143145
* `PyPI Package <https://pypi.org/project/pysad>`_
144146

docs/badges.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ Python Streaming Anomaly Detection (PySAD)
5252

5353
**PySAD** is an open-source python framework for anomaly detection on streaming multivariate data.
5454

55-
`Documentation <https://pysad.readthedocs.io/en/latest/>`_
55+
`Documentation <https://pysad.readthedocs.io/en/latest/>`__

docs/installation.rst

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Alternatively, you can install the library directly using the source code in Git
2121
2222
2323
**Required Dependencies:**
24+
25+
2426
* Python 3.8
2527
* numpy==1.23.5
2628
* scikit-learn>=1.3.0

docs/quick_links.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Quick Links
33

44
* `Github Repository <https://github.com/selimfirat/pysad/>`_
55

6-
* `Documentation <http://pysad.readthedocs.io/>`_
6+
* `Documentation <http://pysad.readthedocs.io/>`__
77

88
* `PyPI Package <https://pypi.org/project/pysad>`_
99

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@
4242
'Operating System :: Unix',
4343
'Operating System :: MacOS',
4444
'Operating System :: Microsoft :: Windows',
45-
'Programming Language :: Python :: 3.6',
46-
'Programming Language :: Python :: 3.7',
4745
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3.11",
4849
],
49-
python_requires=">=3.6"
50+
python_requires=">=3.8"
5051
)

0 commit comments

Comments
 (0)