-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (46 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
57 lines (46 loc) · 1.13 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
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "data-tutorials"
dynamic = ["version"]
dependencies = [
"pytest",
"ruff",
"tqdm"
]
requires-python = ">=3.9"
authors = [
{name = "Alin M Elena", email = "alin@elena.re"}
]
maintainers = [
{name = "Alin M Elena", email = "alin@elena.re"}
]
description = "download data for tutorials"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["data", "download"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ddmms/data-tutorials"
Repository = "https://github.com/ddmms/data-tutorials.git"
Issues = "https://github.com/ddmms/data-tutorials/issues"
[tool.setuptools]
packages = ["data_tutorials"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
[tool.ruff.format]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"