-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 942 Bytes
/
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
from setuptools import setup, Extension, find_packages
from os.path import join
import numpy
SRC_DIR = 'Markov_Models/estimation'
extensions = []
extensions.append(
Extension(
'Markov_Models.estimation._mle_tmat_prinz',
sources = [join(SRC_DIR, "_mle_tmat_prinz.pyx")],
include_dirs=[numpy.get_include()]),
)
extensions.append(
Extension(
'Markov_Models.estimation._simulate',
sources = [join(SRC_DIR, "_simulate.pyx")],
include_dirs=[numpy.get_include()]),
)
setup(
name = 'Markov_Models',
author = 'Pablo Romano',
author_email = '[email protected]',
description = 'Python API for Generating Markov Chains',
version = '0.3',
url = 'https://github.com/pgromano/Markov_Models',
packages = ['Markov_Models'],
install_requires=[
'numpy',
'scipy',
'scikit-learn'
],
ext_modules=extensions,
zip_safe = False,
)