-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Smartscope"
authors = [
{name = "Jonathan Bouvette", email = "[email protected]"},
]
description = "Smartscope module for automatic CryoEM grid screening"
requires-python = ">=3.9,<3.10"
keywords = ["smartscope", "cryoem", "screening","serialem"]
license = {file = "LICENSE"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "readme"]
dependencies = [
"boto3==1.26.157",
"channels_redis==4.1.0",
"daphne",
"ddt==1.6.0",
"django==4.2.2",
"django-environ==0.10.0",
"django-filter==23.2",
"django-channels",
"django-storages==1.13.2",
"djangorestframework==3.14.0",
"djangorestframework-yaml==2.0.0",
"drawSvg[all]",
"environ==1.0",
"imutils==0.5.4",
"mrcfile==1.4.3",
"matplotlib==3.7.1",
"numpy==1.25.0",
"opencv-python==4.7.0.72",
"pandas==2.0.2",
"pillow==9.0.1",
"plotly==5.15.0",
"pycv2==0.0.1",
"pydantic",
"psutil==5.9.5",
"pymysql==1.0.3",
"pyyaml==6.0",
"seaborn",
"scipy==1.10.1",
"scikit-image==0.21.0",
"scikit-learn",
"torch==1.8.1",
"torchvision==0.9.1",
"torchaudio==0.8.1",
"websockets==11.0.3",
]
[project.optional-dependencies]
dev = ["black", "flake8"]
[project.urls]
Homepage = "https://smartscope.org"
Documentation = "https://docs.smartscope.org/"
Repository = "https://github.com/NIEHS/SmartScope"
# [project.scripts]
# my-script = "my_package.module:function"
[tool.setuptools.dynamic]
version = {file = ["VERSION"]}
readme = {file = ["README.md"]}
[tool.setuptools]
packages = ["Smartscope"]
script-files = ["Smartscope/bin/smartscope.py","Smartscope/bin/manage.py","Smartscope/bin/smartscope.sh"]