-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
48 lines (44 loc) · 1.33 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
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on Tue Nov 8 21:26:07 2016
@author: martin
"""
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
skw = dict(
name='financial_life',
version='0.9.4',
description='A framework for analysing financial products in personalized contexts',
author='Martin Pyka',
author_email='[email protected]',
maintainer='Martin Pyka',
maintainer_email='[email protected]',
url='https://github.com/MartinPyka/financial_life',
keywords=["finance", "analysis", "simulation", "loan", "bank"],
license="Apache License, Version 2.0",
packages=['financial_life',
'financial_life.calendar_help',
'financial_life.examples',
'financial_life.financing',
'financial_life.products.germany.lbs',
'financial_life.reports',
'financial_life.tax.germany',
'financial_life.templates.html.standard',
],
package_data={'financial_life': ['templates/html/standard/*.html']}
)
if have_setuptools is True:
skw['install_requires'] = [
'Jinja2>=2.7.2,<3',
'matplotlib>=1.3.1,<2',
'numpy>=1.8.1,<2',
'pandas>=0.18.1,<1',
'tabulate>=0.7.5,<1',
'xlwt>=1.2.0',
]
setup(**skw)