-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
101 lines (90 loc) · 1.95 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
;;
;; Boussole package
;;
[metadata]
name = boussole
version = 2.1.3
description = Commandline interface to build Sass projects using libsass-python
long_description = file:README.rst
long_description_content_type = text/x-rst
author = David Thenon
author_email = [email protected]
url = https://github.com/sveetch/boussole
license = MIT
keywords = Scss, Sass, Libsass, watchdog
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Environment :: Console
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Intended Audience :: Developers
Topic :: Internet
Topic :: Software Development :: Compilers
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data = True
python_requires = >=3.6
install_requires =
click>=5.1
watchdog>=0.8.3
libsass>=0.19.4
pyaml
colorama
colorlog
packages = find:
zip_safe = True
[options.entry_points]
console_scripts =
boussole = boussole.cli.console_script:cli_frontend
[options.extras_require]
dev =
pytest
quality =
flake8
tox
twine
doc =
livereload
sphinx>=4.3.0
sphinx-rtd-theme==1.1.0
[options.packages.find]
where = .
exclude=
docs
tests
[wheel]
universal = 1
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 90
exclude =
.git,
.venv,
build,
venv,
__pycache__
[tool:pytest]
addopts = -vv
python_files =
*.py
testpaths =
tests
[tox:tox]
minversion = 3.4.0
envlist = py{37,310}-libsass{0194,0200,0220}
[testenv]
deps =
libsass0194: libsass>=0.19.4,<0.20.0
libsass0200: libsass>=0.20.0,<0.21.0
libsass0220: libsass>=0.22.0,<0.23.0
commands =
pip install -e .[dev]
pytest -vv tests