-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
123 lines (113 loc) · 3.81 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# pyproject-build
[build-system]
requires = ["wheel", "setuptools>=61.0.0", "flit_core >=3.2,<4"]
#build-backend = "setuptools.build_meta"
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "deduplicationdict"
[tool.setuptools]
py-modules = ['deduplicationdict']
[tool.setuptools.package-data]
"deduplicationdict" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["deduplicationdict"]
[project]
# $ pip install deduplicationdict
name = "deduplicationdict"
version = "1.0.4"
description = "A dictionary that de-duplicates values."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
keywords = ["python", "dict", "deduplication", "optimization", ]
authors = [
{ name = "Vivswan Shah", email = "[email protected]" }
]
maintainers = [
{ name = "Vivswan Shah", email = "[email protected]" }
]
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: File Formats :: JSON",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3 :: Only",
]
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of this field vs pip's requirements files see:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
dependencies = []
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# syntax, for example:
#
# $ pip install deduplicationdict[dev]
#
# Similar to `dependencies` above, these must be valid existing
# projects.
[project.optional-dependencies]
doc = [
"sphinx>=4.2.0",
"sphinx-autobuild",
"rst-to-myst[sphinx]",
"furo",
"myst_parser",
"sphinx-rtd-theme",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx-notfound-page",
"sphinx-inline-tabs",
"sphinxext-opengraph",
"sphinxcontrib-katex", # for math
]
flake8 = [
"flake8",
"flake8-docstrings",
"flake8-quotes",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-executable",
"flake8-coding",
"flake8-return",
#"flake8-noreturn; python_version >= '3.8'",
"flake8-deprecated",
]
dev = [
"flit", # for building {flit build}
"setuptools>=61.0.0",
"build", # building the package {pyproject-build}
"twine", # to publish on pypi {twine upload --repository-url=https://test.pypi.org/legacy/ dist/*} {twine upload dist/*}
"johnnydep", # to see dependencies {johnnydep <package>}
]
test = [
"deduplicationdict[flake8]",
"deepdiff",
"coverage",
]
all = ["deduplicationdict[dev,doc,test]"]
[project.urls]
"Author" = "https://vivswan.github.io/"
"Bug Reports" = "https://github.com/Vivswan/DeDuplicationDict/issues"
"Documentation" = "https://deduplicationdict.readthedocs.io/en/latest/"
"Homepage" = "https://github.com/Vivswan/DeDuplicationDict"
"Say Thanks!" = "https://vivswan.github.io/"
"Source" = "https://github.com/Vivswan/DeDuplicationDict"
# pytest configuration
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=deduplicationdict --cov-report=xml --cov-report=html"