Skip to content

Commit

Permalink
feat: make installable with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
guyazran committed Jan 2, 2023
1 parent df2e99e commit d288033
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
34 changes: 34 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[metadata]
name = causality_lab
version = 0.0.0
author = Intel Labs
description = Research code of novel causal discovery algorithms developed at Intel Labs.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/IntelLabs/causality-lab
keywords = AI, ML, causality
classifiers =
'License :: OSI Approved :: MIT License'
'Programming Language :: Python'
'Programming Language :: Python :: 3'
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: Implementation :: CPython'
'Programming Language :: Python :: Implementation :: PyPy'

[options]
packages = find:
python_requires = >=3.7
install_requires =
numpy
scipy
matplotlib

[options.packages.find]
exclude =
unit_tests
imgs
notebooks
example_data

0 comments on commit d288033

Please sign in to comment.