forked from Hive-Systems/pyfair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.17 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
from distutils.core import setup
setup(
name='pyfair',
version='0.1-alpha.12',
description='Open FAIR Monte Carlo creator',
long_description="""
Factor Analysis of Information Risk (Open FAIR) model in Python.
This package endeavors to create a simple API for automating the
creation of FAIR Monte Carlo risk simulations.
This is based on the terms found in:
1. Open FAIR™ RISK TAXONOMY (O-RT); and,
2. Open FAIR™ RISK ANALYSIS (O-RA).
"Open FAIR" is a trademark of the Open Group.
""",
author='Theo Naunheim',
author_email='[email protected]',
packages=[
'pyfair',
'pyfair.model',
'pyfair.report',
'pyfair.utility',
],
license='MIT',
url='https://github.com/theonaunheim/pyfair',
keywords=[
'FAIR',
'risk'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
],
requires=[
'pandas',
'numpy',
'scipy',
'matplotlib',
'xlrd',
],
package_dir={'pyfair': './pyfair'},
package_data={'pyfair': ['./static/*']},
)