-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
45 lines (34 loc) · 1.19 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
import os
from setuptools import setup
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
except:
return ""
setup(
name="mixem",
version="0.1.3",
author="Stefan Seemayer",
author_email="[email protected]",
description="Expectation-Maximization (EM) algorithm for fitting mixtures of probability distributions",
long_description=read("README.rst"),
license="MIT",
keywords="numeric em expectation maximization probability statistics distribution",
url="https://github.com/sseemayer/mixem",
packages=['mixem', 'mixem.distribution'],
install_requires=[
"numpy>=1.7.0",
"scipy>=0.14.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
],
)