-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (62 loc) · 1.77 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools-scm[toml]>=6.2",
]
[project]
name = "pydeps2env"
description = "A python helper to generate conda environment files from project dependencies."
readme = { file = "README.md", content-type = "text/markdown" }
keywords = [
"conda",
"pyproject",
]
license = { file = "LICENSE", name = "BSD License" }
authors = [
{ name = "Çağtay Fabry", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
# see: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
"version", # version gets derived from git by setuptools_scm.
]
dependencies = [
"packaging",
"pyyaml",
"tomli; python_version<'3.11'",
]
optional-dependencies.test = [
# needed to run the test suite
"pytest",
"pytest-cov",
]
urls.bug_tracker = "https://github.com/CagtayFabry/pydeps2env/-/issues"
urls.repository = "https://github.com/CagtayFabry/pydeps2env"
scripts.pydeps2env = "pydeps2env.generate_environment:main"
[tool.setuptools.packages]
find = { exclude = [
"test",
"resources",
] }
[tool.setuptools_scm]
write_to = "pydeps2env/_version.py"
[tool.pytest.ini_options]
addopts = "--tb=short --color=yes -rsw --cov=pydeps2env"
testpaths = [
"test",
]