-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (91 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (91 loc) · 2.25 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
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
102
103
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plotez"
description = "Mundane plotting done easy."
authors = [{ name = "Syed Ali Mohsin Bukhari", email = "ali.mohsin@ist.edu.pk" }]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
dynamic = ["version"]
dependencies = [
"matplotlib",
"numpy",
]
keywords = ["plotting", "visualization", "data visualization", "python plotting"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research",
]
[tool.setuptools.dynamic]
version = { attr = "plotez.version.__version__" }
[tool.your_package.contacts]
emails = ["ali.mohsin@ist.edu.pk", "syedali.b+github@outlook.com"]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"mypy",
"sphinx",
"isort",
"black",
"pydocstyle",
"flake8",
"pylint",
"pre-commit",
"build",
"sphinx-copybutton",
"myst-parser",
"pyqt6",
"pydata-sphinx-theme"
]
[project.urls]
Issues = "https://github.com/syedalimohsinbukhari/plotez/issues"
Repository = "https://github.com/syedalimohsinbukhari/plotez/"
Changelog = "https://github.com/syedalimohsinbukhari/plotez/blob/main/docs/CHANGELOG.md"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.black]
line-length = 120
color = true
target-version = ["py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| __pycache__
)/
'''
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
src_paths = ["src", "tests"]
[tool.pydocstyle]
convention = "numpy"
add-ignore = ["D100", "D104", "D105", "D107"]
match = "(?!test_).*.py"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["examples", "*tests*", "md_SUMMARIES*"]