-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "contextualized-ml"
version = "0.2.8"
authors = [
{ name="Caleb Ellington", email="cellingt@cs.cmu.edu" },
{ name="Ben Lengerich", email="blengeri@mit.edu" },
]
description = "A statistical machine learning toolbox for estimating models, distributions, and functions with sample-specific parameters."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = [
"contextual modeling",
"machine learning",
"graphical models",
"meta-learning",
"multitask learning",
]
dependencies = [
'lightning>=2.0.0',
'torch>=2.0.0',
'torchvision>=0.8.0',
'numpy>=1.19.0',
'pandas>=2.0.0',
'scikit-learn>=1.0.0',
'igraph>=0.11.0',
'matplotlib>=3.3.0',
]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
[tool.hatch.build.targets.wheel]
packages = ["contextualized"]
[project.urls]
"Homepage" = "https://contextualized.ml/"
"Source" = "https://github.com/cnellington/Contextualized/"