-
Notifications
You must be signed in to change notification settings - Fork 258
/
pyproject.toml
111 lines (96 loc) · 2.11 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
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
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ['flit_core>=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'circus'
dynamic = ['description', 'version']
authors = [
{name = 'Mozilla Foundation & contributors', email = 'services-dev@lists.mozila.org'}
]
readme = 'README.md'
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
requires-python = '>=3.7'
dependencies = [
'psutil',
'pyzmq>=17.0',
'tornado>=5.0.2',
]
[project.urls]
Source = 'https://github.com/circus-tent/circus'
Documentation = 'https://circus.readthedocs.io'
[project.optional-dependencies]
test = [
'coverage',
'flake8==2.1.0',
'gevent',
'mock',
'pytest',
'pytest-cov',
'pyyaml',
'tox',
]
[project.scripts]
circusd = 'circus.circusd:main'
circusd-stats = 'circus.stats:main'
circusctl = 'circus.circusctl:main'
circus-top = 'circus.stats.client:main'
circus-plugin = 'circus.plugins:main'
[tool.flit.module]
name = 'circus'
[tool.flit.sdist]
exclude = [
'.github/',
'docs/',
'examples/',
'tests/',
'.gitignore',
]
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'tests',
]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py37,py38,py39,py310,py311,pypy37,pypy38,pypy39,flake8,docs
[testenv]
passenv = PWD
deps =
coverage
gevent
mock
pytest
pytest-cov
pyyaml
pyzmq>=17.0
tornado>=5.0.2
setenv =
TESTING=1
PYTHONUNBUFFERED=1
commands =
pytest --verbose -s
[testenv:docs]
whitelist_externals = make
deps =
sphinx
mozilla-sphinx-theme
commands = make -C docs html
[testenv:flake8]
deps = flake8==2.1.0
commands = flake8 circus
"""