-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
69 lines (61 loc) · 2.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
long_description = """
Quant DSL is a functional programming language for modelling derivative instruments.
At the heart of Quant DSL is a set of built-in elements (e.g. "Market", "Choice", "Wait") that encapsulate maths used in finance and trading (i.e. models of market dynamics, the least-squares Monte Carlo approach, time value of money calculations) and which can be composed into executable expressions of value.
User defined functions are supported, and can be used to generate massive expressions. The syntax of Quant DSL expressions has been formally defined, and the semantic model is supported with mathematical proofs. The Python package quantdsl is an implementation in Python of the Quant DSL syntax and semantics.
An extensive `README file is available on GitHub <https://github.com/johnbywater/quantdsl/blob/master/README.md>`_.
"""
from quantdsl import __version__
setup(
name='quantdsl',
version=__version__,
packages=find_packages(),
zip_safe=False,
install_requires=[
'argh',
'mock==1.0.1',
'scipy',
'python-dateutil==2.2',
'requests',
'six',
'eventsourcing==0.9.4',
'pytz',
'blist',
'pandas',
'pandas_datareader',
'matplotlib',
# 'memory_profiler',
# 'psutil',
# 'numexpr'
],
scripts=[],
author='John Bywater',
author_email='john.bywater@appropriatesoftware.net',
license='BSD',
url='https://github.com/johnbywater/quantdsl',
description='Domain specific language for quantitative analytics in finance.',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)