Skip to content

Commit 4dcb5c8

Browse files
committed
clean up build
1 parent d94aad0 commit 4dcb5c8

File tree

3 files changed

+21
-29
lines changed

3 files changed

+21
-29
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ test: clean lint
1111
nosetests tests --exe
1212

1313
build: test
14-
python setup.py bdist_egg
15-
16-
build-dist:
1714
python setup.py bdist_egg sdist bdist_wheel
1815

1916
install: build

setup.cfg

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md
3+
name = lassobbn
4+
version = 1.0.0
5+
author = Jee Vang
6+
author_email = [email protected]
7+
description = Learning Bayesian Belief Networks with LASSO
8+
long_description = file: README.md
9+
long_description_content_type = text/markdown
10+
url = https://github.com/oneoffcoder/lassobbn
11+
keywords = bayesian belief network, bayesian network, causal learning, causal discovery, lasso regression, structure learning
12+
install_requires = numpy, scipy, networkx, pandas
13+
classifiers =
14+
Programming Language :: Python :: 3
15+
Operating System :: OS Independent
16+
Topic :: Scientific/Engineering :: Artificial Intelligence
17+
Intended Audience :: Developers
18+
Intended Audience :: Science/Research
19+
Development Status :: 5 - Production/Stable'
20+
include_package_data = True
21+
test_suite = nose.collector
322
423
[flake8]
524
max-line-length = 120
6-
ignore = E501 E731
25+
ignore = E501 E731 E741
726
827
[nosetests]
928
verbosity = 3

setup.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
11
from setuptools import setup, find_packages
22

3-
with open('README.md', 'r') as fh:
4-
long_desc = fh.read()
5-
63
setup(
7-
name='lassobbn',
8-
version='0.0.2',
9-
author='Jee Vang',
10-
author_email='[email protected]',
114
packages=find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
12-
description='Learning Bayesian Belief Networks with LASSO',
13-
long_description=long_desc,
14-
long_description_content_type='text/markdown',
15-
url='https://github.com/oneoffcoder/lassobbn',
16-
keywords=' '.join(['bayesian', 'belief', 'network', 'multivariate', 'conditional', 'gaussian',
17-
'linear', 'causal', 'causality', 'structure', 'parameter', 'lasso']),
18-
install_requires=['numpy', 'scipy', 'networkx', 'pandas'],
19-
classifiers=[
20-
'Programming Language :: Python :: 3',
21-
'Operating System :: OS Independent',
22-
'Topic :: Scientific/Engineering :: Artificial Intelligence',
23-
'Intended Audience :: Developers',
24-
'Intended Audience :: Science/Research',
25-
'Development Status :: 5 - Production/Stable'
26-
],
27-
include_package_data=True,
28-
test_suite='nose.collector'
295
)

0 commit comments

Comments
 (0)