-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
36 lines (32 loc) · 903 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
[metadata]
name = viur_cli
version = attr: viur_cli.version.__version__
author = Andreas H. Kelch
author_email = [email protected]
description = Command-line interface for ViUR application maintenance.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/viur-framework/viur-cli
project_urls =
Bug Tracker = https://github.com/viur-framework/viur-cli/issues
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
License :: OSI Approved :: MIT License
[options]
package_dir =
= src
packages = find:
python_requires = >=3.11
install_requires =
app_server~=0.9
click~=8.1.7
pipfile-requirements~=0.3
requests~=2.31
semver~=3.0
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
viur = viur_cli:cli
get-pyodide = viur_cli.scripts.get_pyodide:main