-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 865 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
from setuptools import setup
def read(fname):
import os
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='panelctmc',
version='0.1.1',
description=(
"Continuous Time Markov Chain for daily panel data "
"and annual transition probabilities"),
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='http://github.com/kmedian/panelctmc',
author='Ulf Hamster',
author_email='554c46@gmail.com',
license='MIT',
packages=['panelctmc'],
install_requires=[
'setuptools>=40.0.0',
'nose>=1.3.7',
'ctmc>=0.1.2',
'yearfrac>=0.4.1',
'grouplabelencode>=0.1.0',
'numpy>=1.14.5',
'scikit-learn>=0.19.2'],
python_requires='>=3.6',
zip_safe=False)