-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (56 loc) · 966 Bytes
/
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
[metadata]
name = poms
version = v4_4_2
description = Production Operations Management Service
license = BSD 3-Clause License
classifiers =
Programming Language :: Python :: 3.8
[options]
include_package_data = True
packages =
poms
poms.poms_client
poms.submission_broker
poms.test
poms.webservice
setup_requires = pytest-runner
zip_safe = False
install_requires =
psycopg2
cherrypy
sqlalchemy
jinja2
crontab
futures
requests
prometheus_client
tests_require =
pytest
pytest_cov
mock
coverage
[options.package_data]
poms=
__init__.py
*.py
setup.cfg
poms.webservice =
*.ini
templates/*.html
static/samples/*
static/css/*.css
static/img/*png
static/js/*.js
poms.submission_broker =
*.py
poms.poms_client =
bin/*
python/*.py
test/*.py
poms.test=
*.py
*.ini
[aliases]
test=pytest
[tool:pytest]
addopts=-c tests/pytest.ini test