-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 978 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
[project]
name = "HGD"
version = "1.0"
requires-python = ">=3.9"
authors = [
{name = "Benjy Marks", email = "benjy.marks@sydney.edu.au"},
{name = "Shivakumar Athani", email = "shivakumar.athani@sydney.edu.au"},
{name = "Jiahuan Li", email = "jiahuan.li@sydney.edu.au"}
]
description = "A heterarchical granular dynamics solver for the motion, segregation, mixing and crushing of granular media"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["granular", "void", "migration", "heterarchical", "stochastic"]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"tqdm",
"json5",
"black",
"flake8",
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"markdown-include",
"mkdocs-include-markdown-plugin",
"pre-commit",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 110
target-version = ['py311']
[tool.setuptools]
packages = ["HGD"]