Metadata-Version: 2.4
Name: graphica
Version: 0.2.0
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: scikit-learn
Requires-Dist: matplotlib
Requires-Dist: seaborn
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/*`
