forked from conda/conda-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (75 loc) · 1.72 KB
/
setup.cfg
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool:pytest]
flake8-max-line-length = 105
flake8-ignore =
docs/* ALL
conda_lock/_version.py ALL
[metadata]
name = conda_lock
description = Lockfiles for conda
author = Marius van Niekerk
author_email = [email protected]
url = https://github.com/conda-incubator/conda-lock
long_description_content_type = text/markdown
long_description = file: README.md
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
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
project_urls =
Documentation=https://conda-incubator.github.io/conda-lock/
[options]
zip_safe = True
install_requires =
PyYaml >= 5.1
requests >=2
Jinja2
toml
ensureconda >=1.3
click>=8.0
click-default-group
pydantic >=1.8.1
ruamel.yaml
poetry
typing-extensions
python_requires = >=3.6
packages = find:
setup_requires =
setuptools >= 41.2
setuptools_scm
[options.extras_require]
pip_support = poetry ==1.1.*
[options.entry_points]
console_scripts =
conda-lock = conda_lock:main
[sdist]
formats = gztar
[isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
lines_after_imports=2
lines_between_types=1
multi_line_output=3
not_skip=__init__.py
use_parentheses=true
known_first_party=attr
[check-manifest]
ignore =
*.yml
.coveragerc
Makefile
docs
docs/*
*.enc
tests
tests/*