-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
56 lines (55 loc) · 1.57 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
from setuptools import setup
setup(
name="IOHMM",
version="0.0.7",
description='A python library for Input Output Hidden Markov Models',
url='https://github.com/Mogeng/IOHMM',
author='Mogeng Yin',
author_email='[email protected]',
license='BSD License',
packages=['IOHMM'],
install_requires=[
'numpy >= 1.20.0',
'future >= 0.18.2',
'pandas >= 1.2.1',
'scikit-learn >= 1.2.2',
'scipy >= 1.6.0',
'statsmodels >= 0.12.2',
],
extras_require={
'tests': [
'flake8>=3.8.4',
'mock>=3.9.1',
'nose>=1.3.7',
'coveralls>=3.0.0',
'pytest',
]
},
zip_safe=True,
keywords=' '.join([
'python',
'hidden-markov-model',
'graphical-models',
'sequence-to-sequence',
'machine-learning',
'linear-models',
'sequence-labeling',
'supervised-learning',
'semi-supervised-learning',
'unsupervised-learning',
'time-series',
'scikit-learn',
'statsmodels']),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)