-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
56 lines (52 loc) · 1.6 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
with open('VERSION', 'r') as f:
version = f.read().strip()
setuptools.setup(
name='aakr',
version=version,
license='MIT',
description='Implementation of Auto Associative Kernel Regression (AAKR)',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jesse Myrberg',
author_email='jesse.myrberg@gmail.com',
url='https://github.com/jmyrberg/aakr',
keywords=['aakr', 'auto', 'associative', 'kernel', 'regression', 'anomaly',
'detection', 'signal', 'reconstruction'],
install_requires=[
'numpy>=1.19.4',
'pandas>=1.1.5',
'scikit-learn>=0.23.2'
],
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
],
extras_require={
'tests': [
'pytest',
'pytest-cov'
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'numpydoc',
'm2r2',
'sphinxcontrib-napoleon'
]
}
)