-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
42 lines (39 loc) · 1.39 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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
setup(
name="pymc3-hmm",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Hidden Markov Models in PyMC3",
url="http://github.com/AmpersandTV/pymc3-hmm",
maintainer="Brandon T. Willard",
maintainer_email="[email protected]",
packages=["pymc3_hmm"],
install_requires=[
"numpy>=1.18.1",
"scipy>=1.4.0",
"pymc3>=3.11.1,<4.0.0",
"datashader>=0.13.0",
],
tests_require=["pytest"],
long_description=open("README.md").read() if exists("README.md") else "",
long_description_content_type="text/markdown",
zip_safe=False,
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)