-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.73 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
[build-system]
# Since setuptools-conda uses itself (from the source directory) to build itself, this
# is the full list of our run-time requirements. Of course, pip will not be able to
# install these conda dependencies and we don't want it to - this package should be
# built with "python -m setuptools_conda build .", not with 'pip wheel' or anything
# else.
requires = [
"setuptools",
"wheel",
"setuptools_scm",
"importlib_metadata",
"distlib",
"toml",
"conda-build",
"ripgrep",
]
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"
[tool.setuptools.packages]
find = {namespaces = false}
[project]
name = "setuptools-conda"
description = "Build a conda package from a setuptools project"
authors = [
{name = "Chris Billington", email = "[email protected]"},
]
keywords = ["build", "setuptools", "conda"]
license = {file = 'LICENSE.txt'}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = [
"setuptools",
"wheel",
"setuptools_scm",
"distlib",
"toml",
"conda-build",
"ripgrep",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/chrisjbillington/setuptools-conda"
Documentation = "https://github.com/chrisjbillington/setuptools-conda"
Repository = "https://github.com/chrisjbillington/setuptools-conda"
Downloads = "https://github.com/chrisjbillington/setuptools-conda"
Tracker = "https://github.com/chrisjbillington/setuptools-conda/issues"
[project.scripts]
setuptools-conda = "setuptools_conda.__main__:main"
[tool.setuptools_conda]
noarch = true