-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-rust"]
build-backend = "setuptools.build_meta"
[project]
name = "bentopy"
version = "0.0.1"
authors = [
{ name="Marieke Westendorp", email="[email protected]" },
{ name="Bart Bruininks", email="[email protected]" },
{ name="Jan Stevens", email="[email protected]" },
]
description = "Packs stuff in boxes"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"freud-analysis",
"MDAnalysis",
"mdvcontainment @ git+https://github.com/BartBruininks/mdvcontainment.git",
]
[project.urls]
Homepage = "https://github.com/marrink-lab/bentopy"
Issues = "https://github.com/marrink-lab/bentopy/issues"
[project.scripts]
bentopy-check = "check:check.main"
bentopy-mask = "mask:mask.main"
bentopy-grocat = "grocat:grocat.main"
[[tool.setuptools-rust.bins]]
target = "bentopy-pack"
[[tool.setuptools-rust.bins]]
target = "bentopy-render"