forked from yassinemaaroufi/MibianLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 761 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
from distutils.core import setup
from os import walk
def getPackages():
return [a.replace('/','.') for a, b, c in walk('mibian')]
setup(
name='mibian',
version='0.1.2',
description='Options Pricing Library',
long_description='MibianLib is an options pricing library implementing '
+ 'the Garman-Kohlhagen, Black-Scholes and Merton pricing models '
+ 'for European options on currencies and stocks.',
author='Yassine Maaroufi',
author_email='[email protected]',
url='http://code.mibian.net/',
license='GPL',
packages=getPackages(),
requires=['scipy'],
classifiers = [
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU General Public License (GPL)'
]
)