-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.85 KB
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
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=50.0.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "microphase_assemblies"
version = "1.0.7"
description = """A toolkit that uses scikit-image and related libraries to identify and characterize spatial properties of microphase assemblies."""
readme = "README.md"
authors = [
{name = "Jared Lalmansingh", email = "jared.lalmansingh@wustl.edu"},
{name = "Min Kyung Shinn", email = "mshinn@wustl.edu"},
]
maintainers = [
{name = "Jared Lalmansingh", email = "jared.lalmansingh@wustl.edu"},
{name = "Min Kyung Shinn", email = "mshinn@wustl.edu"},
]
classifiers = [
"Natural Language :: English",
"Intended Audience :: Developers",
"Topic :: Software Develepment :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = [
"development",
"library",
]
dependencies = [
"incremental",
"matplotlib",
"numpy",
"opencv-python",
"pandas",
"pyclesperanto_prototype",
"python-dotenv",
"pytest",
"scikit-image",
"scipy",
"tabulate",
"tifffile",
"tqdm"
]
requires-python = ">=3.10"
[project.scripts]
extract_assemblies = "microphase_assemblies.scripts.extract_assemblies:main"
filter_results = "microphase_assemblies.scripts.filter_results:main"
tessellate = "microphase_assemblies.scripts.tessellate:main"
sweep = "microphase_assemblies.scripts.sweep:main"
[tools.setuptools]
packages = ["microphase_assemblies"]
[project.urls]
homepage = "https://github.com/Pappulab/microphase-assemblies"
repository = "https://github.com/Pappulab/microphase-assemblies"
issues = "https://github.com/Pappulab/microphase-assemblies/issues"