-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (41 loc) · 1.38 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "search-data-explorer"
version = "0.4.2"
description = ""
dynamic = ["dependencies"]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["visualization", "data-science"]
authors = [
{name = "Simon Blanke", email = "simon.blanke@yahoo.com" }
]
maintainers = [
{name = "Simon Blanke", email = "simon.blanke@yahoo.com" }
]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/requirements.txt"]}
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]
[project.urls]
"Homepage" = "https://github.com/SimonBlanke/search-data-explorer"
"Bug Reports" = "https://github.com/SimonBlanke/search-data-explorer/issues"
"Source" = "https://github.com/SimonBlanke/search-data-explorer"