-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.21 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
[tool.poetry]
name = "poetry2conda"
# Note the version managed by bump2version.
# Do not change it manually here, use bump2version to change it.
version = "0.3.0"
description = "Convert pyproject.toml to environment.yaml"
authors = ["David Ojeda <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/dojeda/poetry2conda"
repository = "https://github.com/dojeda/poetry2conda"
keywords = ["poetry", "anaconda"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.6"
toml = "^0.10.0"
poetry-semver = "^0.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pyyaml = "^5.3.1"
pytest-mock = "^3.0.0"
coverage = "^5.1"
pytest-cov = "^2.8.1"
black = "^19.10b0"
[tool.poetry.scripts]
poetry2conda = "poetry2conda.convert:main"
[tool.poetry2conda]
name = 'p2c-env'
[tool.poetry2conda.dependencies]
poetry-semver = { channel = "pip" }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"