-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.09 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/hte_streamlit/_version.py"
[project]
name = "hte_streamlit"
authors = [
{name = "Jacob Schneidewind", email = "pyH2A.pypi@gmail.com"},
]
description = "High-throughput experimentation data analysis and visualization tool"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["high-throughput", "experimentation", "data-analysis", "streamlit"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"streamlit",
"pandas",
"numpy",
"plotly",
"matplotlib",
"scipy",
"h5py",
"tables",
"openpyxl",
]
version = "0.1.0"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"flake8",
]
[project.urls]
"Homepage" = "https://github.com/jschneidewind/hte-streamlit"
"Bug Tracker" = "https://github.com/jschneidewind/hte-streamlit/issues"