-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.06 KB
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
[metadata]
name = "steamroller"
[options]
package_dir = "src"
[options.packages.find]
where = "src"
[options.package_data]
steamroller.data = "*"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "steamroller"
version = "3.0.4"
readme = "README.rst"
authors = [
{name = "Tom Lippincott", email="tom@cs.jhu.edu"}
]
maintainers = [
{name = "Tom Lippincott", email="tom@cs.jhu.edu"}
]
keywords = ["machine learning, parallel computing, "]
description = "Framework for flexible, reproducible, and scalable empirical research."
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing"
]
requires-python = ">=3.9"
dependencies = [
"scons>=4.6.0"
]
[project.scripts]
steamroller = "steamroller:main"
[project.urls]
repository = "https://github.com/comp-int-hum/steamroller"
issues = "https://github.com/comp-int-hum/steamroller/issues"