forked from casact/chainladder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.58 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
descr = "Chainladder Package - P&C actuarial package modeled after the R package of the same name"
#from distutils.core import setup
from setuptools import setup
setup(
name='chainladder',
version='0.1.7',
maintainer='John Bogaardt',
maintainer_email='[email protected]',
packages=['chainladder'],
scripts=[],
url='https://github.com/jbogaardt/chainladder-python',
download_url='https://github.com/jbogaardt/chainladder-python/archive/v0.1.7.tar.gz',
license= 'LICENSE',
include_package_data=True,
package_data = {'data':['/data/ABC',
'/data/M3IR5',
'/data/MCLincurred',
'/data/MCLpaid',
'/data/Mortgage',
'/data/MW2008',
'/data/MW2014',
'/data/qincurred',
'/data/qpaid',
'/data/RAA',
'/data/UKMotor',
'/data/USAAincurred',
'/data/USAApaid',
'/data/auto$CommercialAutoPaid',
'/data/auto$PersonalAutoIncurred',
'/data/auto$PersonalAutoPaid',
'/data/GenIns',
'/data/GenInsLong',
'/data/liab$AutoLiab',
'/data/liab$GeneralLiab']},
description= descr,
#long_description=open('README.md').read(),
install_requires=[
"pandas>=0.20.2",
"numpy>=1.12.1",
"matplotlib>=2.0.2",
"seaborn>=0.7.1",
"scipy>=0.19.0",
"statsmodels>=0.8.0",
],
)