-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (45 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "anypytools"
authors=[{name="Morten Enemark Lund", email="[email protected]"}]
description = "Python tools and utilities for working with the AnyBody Modeling System"
readme = "README.md"
keywords = ["AnyBody Modeling System", "AnyScript"]
license = {file = "LICENSE.txt"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Pytest",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = ["numpy", "scipy", "tqdm", "pywin32; platform_system == 'Windows'"]
[project.optional-dependencies]
full=[
"h5py",
"jupyter",
"matplotlib",
"pydoe",
"pandas",
"ipywidgets",
"pytest",
]
[project.urls]
Homepage = "https://anybody-research-group.github.io/anypytools-docs/"
Code = "https://github.com/AnyBody-Research-Group/AnyPyTools"
[project.entry-points.pytest11]
anypytools = "anypytools.pytest_plugin"
[tool.setuptools.dynamic]
version = {attr = "anypytools.__version__"}
[tool.setuptools.packages.find]
exclude = ["docs", "tests"]