-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.11 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
[build-system]
requires = [
"setuptools >= 40.0.4",
"wheel >= 0.29.0",
"setuptools_scm[toml]>=3.4",
]
build-backend = 'setuptools.build_meta'
[project]
name = "tox-pin-deps"
description = "A tox plugin for pinning dependencies."
authors = [
{name = "Masen Furer", email = "m_github@0x26.net"},
]
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python',
]
dynamic = ["version", "readme"]
[project.entry-points.tox]
pin_deps = "tox_pin_deps.loader"
[project.urls]
Homepage = "https://github.com/masenf/tox-pin-deps"
[tool.setuptools]
platforms = ['unix', 'linux', 'osx', 'cygwin', 'win32']
[tool.setuptools.dynamic.readme]
file = ["README.md"]
content-type = "text/markdown"
[tool.setuptools_scm]