-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 753 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='ControlCharts',
url='https://github.com/YKatser/ControlCharts',
author='Iurii Katser',
author_email='waico@waico.ru',
# Needed to actually package something
packages=['ControlCharts'],
# Needed for dependencies
install_requires=['math','os','matplotlib','numpy','sklearn','scipy','pandas'],
# *strongly* suggested for sharing
version='1.0.0',
# The license can be anything you like
license='MIT',
description='Control charts for process monitoring and anomaly detection',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.md').read(),
)