-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (33 loc) · 1.05 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
# Copyright 2024 Parallel Software and Systems Group, University of Maryland.
# See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "axonn"
version = "0.2.0"
authors = [
{ name="Siddharth Singh", email="ssingh37@umd.edu" },
{ name="Abhinav Bhatele", email="bhatele@cs.umd.edu"},
]
description = "A parallel library for extreme-scale deep learning"
readme = "README.md"
license = { name = "Apache-2.0", file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"torch"
]
[tool.setuptools.packages.find]
include = ["axonn"]
exclude = ["axonn/tests", "external/", "**__pycache__"]
[project.urls]
Homepage = "https://github.com/axonn-ai/axonn"
Issues = "https://github.com/axonn-ai/axonn/issues"
Docs = "https://axonn.readthedocs.io/en/latest/"