forked from Hive-Systems/pyfair
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.13 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.13 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
41
42
43
44
from distutils.core import setup
setup(
name='pyfair',
version='0.1-alpha.6',
description='FAIR Monte Carlo creator',
long_description="""
Factor Analysis of Information Risk (FAIR) model written in Python.
This package endeavors to create a simple API for automating the
creation of FAIR Monte Carlo risk simulations.
This is based in large part on:
* the Technical Standard published by the Open Group; and,
* Measuring and Managing Information Risk.
""",
author='Theo Naunheim',
author_email='theonaunheim@gmail.com',
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/*']},
)