-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (36 loc) · 1.31 KB
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
from setuptools import setup, find_packages
import os
with open('README.md') as f:
long_description = f.read()
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'riskflow', '_version.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name='riskflow',
version=version_ns['__version__'],
packages=find_packages(),
url='https://github.com/sylam/riskflow',
license='GPLv3',
author='shuaib.osman',
author_email='vretiel@gmail.com',
description='An XVA quantitative library with AAD',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.6',
install_requires=['numpy>=1.16.1', 'scipy>=1.2.2', 'pandas>=1.0', 'matplotlib>=3.0', 'torch>=2.0',
'python-markdown-math>=0.6', 'sortedcontainers>2.0'],
extras_require={
'interactive': ['jupyter'],
},
entry_points={
'console_scripts': [
'RF_Bootstrap = bootstrap:main',
'RF_Batch = riskflow_batch:main',
'RF_Docs = riskflow_docs:main'
]},
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6'],
)