-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.09 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
[metadata]
name = py-passbolt
description = Python library for Passbolt, an open-source manager for teams
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
version = 0.0.18
url = https://github.com/passbolt/lab-passbolt-py
author = Jean-Christophe Vassort
author_email = [email protected]
license = MIT-0
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
project_urls =
Documentation = https://github.com/passbolt/lab-passbolt-py/blob/main/README.md
Source = https://github.com/passbolt/lab-passbolt-py
Tracker = https://github.com/passbolt/lab-passbolt-py/issues
[options]
zip_safe = False
packages = find:
platforms = any
include_package_data = True
install_requires =
httpx ==0.26.0
PGPy ==0.6.0
python-gnupg ==0.5.2
python_requires = >=3.6
setup_requires =
setuptools_scm
[bdist_wheel]
universal = 1
[aliases]
test=pytest
[options.entry_points]
console_scripts =
[options.extras_require]
test =
pytest >= 6.2.2
pycodestyle
pytest-cov
all =
%(test)s