-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (28 loc) · 1002 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "new_conda_env"
description = "A Python package for generating a 'lean' environment yaml file (see README)."
version = "0.1.0"
license = "MIT license"
requires-python = ">=3.6"
keywords = ["conda", "env", "tool"]
dependencies = ["conda"]
authors = [{name = "Cat Chenal"}]
[project.scripts]
new-conda-env = "new_conda_env.cli:main"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/plain"}