-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (36 loc) · 981 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "harmonize"
version = "0.0.1"
authors = [
{ name="Braxton Cuneo", email="bcuneo@seattleu.edu" },
{ name="Joanna Morgan", email="morgajoa@oregonstate.edu" },
]
maintainers = [
{ name="Braxton Cuneo", email="bcuneo@seattleu.edu" },
]
description = "Hamronize, an async GPU scheduler"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["HPC", "GPU"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Typing :: Typed',
'Natural Language :: English',
'Operating System :: Unix',
]
dependencies = [
"numba>=0.58.0",
"numpy",
"colorama",
"black",
]
[project.urls]
Repository = "https://github.com/CEMeNT-PSAAP/harmonize"
Issues = "https://github.com/CEMeNT-PSAAP/harmonize/issues"