-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (34 loc) · 1.03 KB
/
setup.cfg
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
[metadata]
description_file = README.md
name = lassobbn
version = 0.0.1
author = Jee Vang
author_email = g@oneoffcoder.com
description = Learning Bayesian Belief Networks with LASSO
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/oneoffcoder/lassobbn
keywords = bayesian belief network, bayesian network, causal learning, causal discovery, lasso regression, structure learning
install_requires = numpy, scipy, networkx, pandas
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Artificial Intelligence
Intended Audience :: Developers
Intended Audience :: Science/Research
Development Status :: 5 - Production/Stable
include_package_data = True
test_suite = nose.collector
[flake8]
max-line-length = 120
ignore = E501 E731 E741
[nosetests]
verbosity = 3
with-doctest = 1
with-coverage = 1
with-id = 1
cover-erase = 1
cover-html = 1
cover-html-dir = coverage
cover-package = lassobbn
detailed-errors = 1