-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.03 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
[build-system]
requires = ['setuptools', 'setuptools-scm[toml]', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'refcycle'
description = 'Find and visualise reference cycles between Python objects'
readme = 'README.rst'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
authors = [{ name = 'Mark Dickinson', email = '[email protected]' }]
keywords = ["cycle", "cyclic", "debugging", "garbage", "graph", "reference"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Debuggers",
]
dynamic = ['version']
[project.urls]
Homepage = "https://github.com/mdickinson/refcycle"
Documentation = "https://refcycle.readthedocs.io/"
[tool.isort]
profile = 'black'
order_by_type = false
[tool.setuptools_scm]
version_scheme = 'release-branch-semver'