forked from conda/conda-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
73 lines (67 loc) · 1.49 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
[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
[options]
zip_safe = True
install_requires =
PyYaml >= 5.1
requests >=2
Jinja2
toml
ensureconda >=1.1
click
click-default-group
pydantic >=1.8.1
python_requires = >=3.6
packages = find:
setup_requires =
setuptools >= 41.2
setuptools_scm
[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/*