-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathsetup.py
36 lines (31 loc) · 1.03 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
"""
developed by Quantsbin - Jun'18
"""
import setuptools
from distutils.core import setup
# try:
# with open('README.md') as file:
# long_description=file.read()
# except:
# long_description='Quantitative Finance Tools'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='Quantsbin',
version='1.0.2',
description='Quantitative Finance Tools',
long_description=long_description,
long_description_content_type='text/markdown',
author='Quantsbin',
author_email='contactus@quantsbin.com',
url='/~https://github.com/quantsbin/Quantsbin',
packages=['quantsbin', 'quantsbin.derivativepricing', 'quantsbin.montecarlo'],
license='MIT',
classifiers=[ 'Development Status :: 3 - Beta',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6']
)