-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
83 lines (79 loc) · 1.75 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
83
[metadata]
name = hab
version = file: hab/version.py
description = An environment configuration and launcher system
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/blurstudio/hab
author = Blur Studio
author_email = [email protected]
license = LGPL-3.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
platform = any
project_urls =
Source = https://github.com/blurstudio/hab
Tracker = https://github.com/blurstudio/hab/issues
[options]
packages = find:
install_requires =
Jinja2>=2.10.1
MarkupSafe>=0.23
Pygments
anytree
click>=7.1.2
colorama
future>=0.18.2
importlib-metadata
packaging>=20.0
setuptools-scm[toml]>=4
python_requires = >=3.6
include_package_data = True
scripts =
bin/.hab-complete.bash
bin/hab.bat
bin/hab.ps1
bin/hab
[options.packages.find]
exclude = tests
[options.extras_require]
dev =
black==22.12.0
covdefaults
coverage
flake8==5.0.4
flake8-bugbear==22.12.6
isort
pep8-naming==0.13.3
pytest
tox
json5 =
pyjson5
[flake8]
select = B, C, E, F, N, W, B9
extend-ignore =
E203,
E501,
E722,
W503,
max-line-length = 88
exclude =
*.egg-info
*.pyc
.cache
.eggs
.git
.tox
__pycache__
build
dist