forked from DIRACGrid/diracx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (40 loc) · 1.06 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
[metadata]
name = diracx
author = DIRAC consortium
# author_email = distutils-sig@python.org
# description = Easily download, build, install, upgrade, and uninstall Python packages
# long_description = file:README.rst
# url = https://github.com/pypa/setuptools
# classifiers =
# keywords = CPAN PyPI distutils eggs package management
# project_urls =
# Documentation = https://setuptools.pypa.io/
# Changelog = https://setuptools.pypa.io/en/stable/history.html
[options]
packages = find_namespace:
package_dir =
= src
python_requires = >=3.10
install_requires =
[options.packages.find]
where = src
[options.extras_require]
testing =
pytest >= 6
testing-integration =
pytest
docs =
sphinx >= 3.5
[options.entry_points]
console_scripts =
diracx = diracx.cli:app
diracx =
properties_module = diracx.core:properties
diracx.dbs =
AuthDB = diracx.db:AuthDB
JobDB = diracx.db:JobDB
diracx.services =
jobs = diracx.routers.job_manager:router
config = diracx.routers.configuration:router
auth = diracx.routers.auth:router
.well-known = diracx.routers.well_known:router