-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.cfg
More file actions
30 lines (27 loc) · 778 Bytes
/
setup.cfg
File metadata and controls
30 lines (27 loc) · 778 Bytes
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
[metadata]
name = cbrain-cli
version = 0.1.0
description = A command-line interface for CBRAIN
long_description = file: README.md
long_description_content_type = text/markdown
author = CBRAIN Team
author_email = cbrain@mcin-cnim.ca
url = https://github.com/cbrain/cbrain-cli
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.7
[options.entry_points]
console_scripts =
cbrain = cbrain_cli.main:main
[options.extras_require]
dev =
pre-commit>=3.5.0
ruff>=0.8.5