-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (51 loc) · 1.77 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ['setuptools>=65']
build-backend = 'setuptools.build_meta'
[project]
name = 'iscan-dag'
requires-python = ">=3.6"
dynamic = ['version']
authors = [
{name = "Kevin Bello", email = "kbello@cs.cmu.edu"},
{name = "Tianyu Chen", email = "tianyuchen@utexas.edu"},
]
description = 'Implementation of the iSCAN algorithm for detecting distribution shifts'
readme = "README.md"
license = {text = "Apache 2.0"}
keywords = ['iscan', 'distribution shifts', 'causal mechanisms', 'bayesian networks', 'structure learning', 'difference network']
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
]
dependencies = [
'numpy ~= 1.24',
'scikit-learn ~= 1.2',
'torch ~= 2.0',
'igraph ~= 0.10',
'GPy ~= 1.10',
'kneed ~= 0.8',
'pandas ~= 2.0',
'rpy2 ~= 3.5',
'matplotlib ~= 3.7',
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
iscan = ["*.R"]
[tool.setuptools.dynamic]
version = {file = "src/VERSION"}
[project.urls]
'Repository' = 'https://github.com/kevinsbello/iscan'
'Documentation' = "https://iscan-dag.readthedocs.io/en/latest/"
'Issues' = 'https://github.com/kevinsbello/iscan/issues'
[metadata]
long_description = 'file: README.md, LICENSE'
long_description_content_type = 'text/markdown'
url = 'https://github.com/kevinsbello/iscan'
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
exclude = [".tests*", ".examples*"] # exclude packages matching these glob patterns (empty by default)