-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (58 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[metadata]
name = marketplace_hpc
version = 2.0.0
description = Materials MarketPlace HPC gateway app.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/materials-marketplace/hpc-gateway-app
author = Jusong Yu
author_email = jusong.yu@epfl.ch
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
[options]
packages = find:
install_requires =
marketplace-sdk~=0.3.2
requests~=2.26.0
python_requires = >=3.8
include_package_data = True
[options.extras_require]
deploy =
Flask~=2.0.1
Flask-PyMongo~=2.3.0
pyfirecrest~=1.2.0
python-dotenv~=0.19
dev =
bumpver==2021.1114
mongomock~=4.1
pre-commit==2.15.0
pytest==6.2.5
python-dotenv==0.19.2
requests-mock~=1.10
[flake8]
ignore =
E501 # Line length handled by black.
W503 # Line break before binary operator, preferred formatting for black.
E203 # Whitespace before ':', preferred formatting for black.
[bumpver]
current_version = "v2.0.0"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
hpc_gateway_sdk/version.py =
__version__ = "{version}"
setup.cfg =
current_version = "{version}"
version = {pep440_version}