-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
executable file
·45 lines (43 loc) · 1.7 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
from setuptools import setup
version = '0.1.0' # Must correspond to a git tag
setup(
name='riskquant',
packages=['riskquant'],
version=version,
license='apache-2.0',
author='Netflix Detection team',
author_email='[email protected]',
description='A library for applying quantitative risk models.',
keywords='riskquant risk quantify statistics',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Security',
'Intended Audience :: Information Technology',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: System Administrators',
'Topic :: Office/Business :: Financial'
],
url='https://github.com/Netflix-Skunkworks/riskquant',
download_url=('https://github.com/Netflix-Skunkworks/riskquant/archive/' + version + '.tar.gz'),
setup_requires=['setupmeta'],
python_requires='>=3.5, <3.8',
install_requires=[
'matplotlib',
'numpy <1.19.0, >= 1.16.0',
'scipy',
# Tensorflow probability is tested and stable against Tensorflow 2.1.0
# https://github.com/tensorflow/probability/releases
'tensorflow >= 2.1.0',
'tensorflow_probability'
],
extras_require={
'test': ['tox'],
},
scripts=['bin/riskquant'],
)