-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
101 lines (91 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "streamlit-process-manager"
version = "0.0.1b"
description = "Manage the heck out of long-running processes in streamlit"
authors = [
{name = "Alexander Martin", email = "fauxjunk-1@yahoo.com"},
]
dependencies = [
"psutil>=5.9.8",
"streamlit>=1.30.0",
]
requires-python = "!=3.9.7,>=3.8"
readme = "README.md"
license = {file = "LICENCE"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Shells",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/Asaurus1/streamlit-process-manager"
Issues = "https://github.com/Asaurus1/streamlit-process-manager/issues"
[project.optional-dependencies]
dev = [
"tox>=4.14.2",
]
test = [
"pytest>=8.1.1",
]
lint = [
"mypy>=1.9.0",
"pylint>=3.1.0",
"black==24.*",
"pandas-stubs>=2.0.2.230605",
"types-Pillow>=10.2.0.20240324",
"types-cachetools>=5.3.0.7",
"types-colorama>=0.4.15.20240311",
"types-jsonschema>=4.21.0.20240311",
"types-protobuf>=4.24.0.20240311",
"types-psutil>=5.9.5.20240316",
"types-pycurl>=7.45.2.20240311",
"types-toml>=0.10.8.20240310",
"types-openpyxl>=3.1.0.20240311",
]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pdm]
distribution = true
ignore_package_warnings = ["pandas-stubs"]
[tool.pdm.resolution]
excludes = ["numpy", "pandas"]
[tool.pdm.scripts]
mypy = "mypy --install-types --non-interactive src/streamlit_process_manager"
test = "pytest"
pylint = "pylint src/streamlit_process_manager"
lint = {composite = ["format-check", "pylint", "mypy"]}
check = {composite = ["test", "lint"]}
format = "black src"
format-check = "black --check --diff src"
example = "streamlit run examples/example.py"
freeze = "pdm export --editable-self --no-hashes -o requirements.txt"
init-dev = "pdm install -G test -G lint"
[tool.pylint]
max-line-length = 120
disable = [
"E0001",
"R1735",
"R0913",
"W0511",
]
[tool.black]
line-length = 120
[tool.setuptools.package-data]
"pkgname" = ["py.typed"]