Skip to content

Commit e0e3154

Browse files
committed
Adding to PyPi (resolves #6) and releasing v1.0.0
1 parent 6a91e61 commit e0e3154

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ MIT
4040
# Citation
4141
Please cite our project in your publications if it helps your research.
4242
```
43-
Iurii D. Katser and Vyacheslav O. Kozitsin, “Skoltech Anomaly Benchmark (SKAB).” Kaggle, 2020, doi: 10.34740/KAGGLE/DSV/1693952.
43+
Katser, I., V. Kozitsin, and I. Maksimov. "NPP Equipment Fault Detection Methods." Izvestiya vuzov. Yadernaya Energetika 4 (2019): 5-27.
4444
```
4545
Or in BibTeX format:
4646
```
47-
@misc{skab,
48-
author = {Katser, Iurii D. and Kozitsin, Vyacheslav O.},
49-
title = {Skoltech Anomaly Benchmark (SKAB)},
50-
year = {2020},
51-
publisher = {Kaggle},
52-
howpublished = {\url{https://www.kaggle.com/dsv/1693952}},
53-
DOI = {10.34740/KAGGLE/DSV/1693952}
47+
@article{katser2019npp,
48+
title={NPP Equipment Fault Detection Methods},
49+
author={Katser, I and Kozitsin, V and Maksimov, I},
50+
journal={Izvestiya vuzov. Yadernaya Energetika},
51+
volume={4},
52+
pages={5--27},
53+
year={2019}
5454
}
5555
```

requirements.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
math
2+
os
3+
matplotlib
4+
numpy
5+
sklearn
6+
scipy
7+
pandas
8+
19
bluepy

setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import setup
2+
3+
setup(
4+
# Needed to silence warnings (and to be a worthwhile package)
5+
name='ControlCharts',
6+
url='https://github.com/YKatser/ControlCharts',
7+
author='Iurii Katser',
8+
author_email='[email protected]',
9+
# Needed to actually package something
10+
packages=['ControlCharts'],
11+
# Needed for dependencies
12+
install_requires=['math','os','matplotlib','numpy','sklearn','scipy','pandas'],
13+
# *strongly* suggested for sharing
14+
version='1.0.0',
15+
# The license can be anything you like
16+
license='MIT',
17+
description='Control charts for process monitoring and anomaly detection',
18+
# We will also need a readme eventually (there will be a warning)
19+
# long_description=open('README.md').read(),
20+
)

0 commit comments

Comments
 (0)