Metadata-Version: 2.4
Name: graphica
Version: 0.2.1
Summary: Tools for Probabilistic Graphical Modeling
Home-page: https://github.com/edderic/graphica
Author: Edderic Ugaddan
Author-email: Edderic Ugaddan <edderic@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/edderic/graphica
Project-URL: Repository, https://github.com/edderic/graphica
Project-URL: Issues, https://github.com/edderic/graphica/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: tqdm
Requires-Dist: scipy
Provides-Extra: test
Requires-Dist: scikit-learn; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: coverage; extra == "test"
Requires-Dist: pylint; extra == "test"
Provides-Extra: dev
Requires-Dist: jupyter; extra == "dev"
Requires-Dist: jupyterlab; extra == "dev"
Requires-Dist: matplotlib; extra == "dev"
Requires-Dist: seaborn; extra == "dev"
Requires-Dist: python-graphviz; extra == "dev"
Requires-Dist: pyarrow; extra == "dev"
Requires-Dist: line_profiler; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Graphica

Tools for Probabilistic Graphical Modeling.

# For maintainers:

There is a pre-commit hook that you can use.

```
ln -s git_hooks/pre-commit .git/hooks/
```

When you want to release a new version:

- Update the version number in setup.py
- Clean previous builds: `rm -rf dist/ build/ *.egg-info/`
- Build new distribution: `python setup.py sdist bdist_wheel`
- Upload to PyPI: `twine upload dist/*`
