-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
82 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.9" | ||
sphinx: | ||
configuration: docs/conf.py | ||
formats: | ||
python: | ||
install: | ||
- requirements: requirements.txt | ||
- requirements: requirements.dev.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# v0 | ||
|
||
## v0.1 | ||
|
||
### v0.1.2 - 2022-06-05 | ||
|
||
- Make documentation available as a website through readthedocs.io | ||
|
||
### v0.1.1 - 2022-06-05 | ||
|
||
- Fixed wrong minimum Python version in package metadata. | ||
- Updated README.md with more information about the package. | ||
|
||
### v0.1.0 - 2022-06-05 | ||
|
||
Initial public release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
yapf==0.31.0 | ||
Sphinx==5.0.1 | ||
coverage==6.4.1 | ||
coverage==6.4.1 | ||
build==0.8.0 | ||
twine==4.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ networkx>=2.8 | |
pandas>=1.4 | ||
|
||
# Estimators | ||
scikit-learn >= 1.1 | ||
scikit-learn>= 1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
from setuptools import setup | ||
import setuptools | ||
|
||
setup() | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="lgbn", | ||
version="0.1.2", | ||
author="Elias Hernandis", | ||
author_email="[email protected]", | ||
description="Structure and parameter learning for linear Gaussian Bayesian networks.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/knifecake/lgbn", | ||
project_urls={ | ||
"Bug Tracker": "https://github.com/knifecake/lgbn/issues", | ||
"Documentation": "https://lgbn.readthedocs.io/en/latest/" | ||
}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
packages=setuptools.find_packages(include=['lgbn', 'lgbn.*']), | ||
python_requires=">=3.9", | ||
install_requires=['scipy >= 1.8', 'networkx >= 2.8', 'pandas >= 1.4', 'scikit-learn >= 1.1'] | ||
) |