Skip to content

Commit

Permalink
updated setup.py, readme and docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
selimfirat committed Oct 6, 2023
1 parent be42b91 commit eaa3b7f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Python Streaming Anomaly Detection (PySAD)

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

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

Features
========
Expand Down Expand Up @@ -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
Expand All @@ -138,7 +140,7 @@ Quick Links

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

* `Documentation <http://pysad.readthedocs.io/>`_
* `Documentation <http://pysad.readthedocs.io/>`__

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

Expand Down
2 changes: 1 addition & 1 deletion docs/badges.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ Python Streaming Anomaly Detection (PySAD)

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

`Documentation <https://pysad.readthedocs.io/en/latest/>`_
`Documentation <https://pysad.readthedocs.io/en/latest/>`__
2 changes: 2 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/quick_links.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Quick Links

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

* `Documentation <http://pysad.readthedocs.io/>`_
* `Documentation <http://pysad.readthedocs.io/>`__

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

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit eaa3b7f

Please sign in to comment.