-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.31 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
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyifcb"
version = "1.2"
description = "Imaging FlowCytobot Python API, generation 2"
readme = "README.md"
authors = [{name = "Joe Futrelle", email = "[email protected]"},
{name = "Shravani Nagala", email = "[email protected]"}]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
]
keywords = ['FlowCytobot','Imaging','ifcb']
dependencies = [
"scipy",
"pandas",
"h5py",
"requests",
"Pillow",
"rectpack",
"scikit-image",
"pysmb",
"smbprotocol",
"pyyaml",
]
[tool.hatch.build.targets.wheel]
include = [
"ifcb/**/*",
"docs/**/*",
"auto_transfer.py",
"VERSION",
"LICENSE",
"README.md",
"transfer_config.yml.example",
]
[project.scripts]
auto_transfer = "auto_transfer:main"
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Repository = "https://github.com/joefutrelle/pyifcb"
Documentation = "https://github.com/joefutrelle/pyifcb/wiki"
Issues = "https://github.com/joefutrelle/pyifcb/issues"