-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.25 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
[project]
name = "skelly_sim"
version = "0.9.12"
authors = [
{ name="Robert Blackwell", email="[email protected]" }
]
description = 'Simulate cytoskeletal systems with full hydrodynamics'
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Scientists/Mathematicians',
'License :: Apache 2',
'Programming Language :: Python :: 3',
]
license = { file="LICENSE" }
dependencies = [
'numba',
'numpy',
'scipy',
'msgpack',
'scikit-learn',
'toml',
'packaging',
'matplotlib',
'dataclass_utils',
'nptyping',
'function_generator@git+https://github.com/blackwer/function_generator@fda8b44b5edf15d1677ca7433139a43778d6659d',
]
[project.optional-dependencies]
tests = [
'pytest',
]
docs = [
'sphinx-book-theme'
]
[project.urls]
homepage = "https//github.com/flatironinstitute/skelly_sim"
documentation = "https://users.flatironinstitute.org/~rblackwell/py-skellysim"
developer-documentation = "https://users.flatirninstitute.org/~rblackwell/skellysim"
[project.scripts]
skelly_precompute = "skelly_sim.precompute:main"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[pytest]
pythonpath = "src"