File: setup.cfg

package info (click to toggle)
python-keyring 17.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 464 kB
  • sloc: python: 1,449; sh: 12; makefile: 5
file content (63 lines) | stat: -rw-r--r-- 1,679 bytes parent folder | download
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
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE
name = keyring
author = Kang Zhang
author_email = jobo.zh@gmail.com
maintainer = Jason R. Coombs
maintainer_email = jaraco@jaraco.com
description = Store and access your passwords safely.
long_description = file:README.rst
url = https://github.com/jaraco/keyring
classifiers = 
	Development Status :: 5 - Production/Stable
	Intended Audience :: Developers
	License :: OSI Approved :: MIT License
	License :: OSI Approved :: Python Software Foundation License
	License :: OSI Approved :: MIT License
	Programming Language :: Python :: 2.7
	Programming Language :: Python :: 3.3
	Programming Language :: Python :: 3.4
	Programming Language :: Python :: 3.5
	Programming Language :: Python :: 3.6
	Programming Language :: Python :: 3.7

[options]
packages = find:
include_package_data = true
python_requires = >=2.7
install_requires = 
	entrypoints
	pywin32-ctypes!=0.1.0,!=0.1.1; sys_platform=="win32"
	secretstorage; sys_platform=="linux" and python_version>="3.5"
	secretstorage<3; (sys_platform=="linux2" or sys_platform=="linux") and python_version<"3.5"
setup_requires = setuptools_scm >= 1.15.0

[options.extras_require]
testing = 
	pytest >= 3.5, !=3.7.3
	pytest-checkdocs
	pytest-flake8
docs = 
	sphinx
	jaraco.packaging >= 3.2
	rst.linker >= 1.9

[options.entry_points]
console_scripts = 
	keyring=keyring.cli:main
devpi_client = 
	keyring = keyring.devpi_client
keyring.backends = 
	Windows = keyring.backends.Windows
	macOS = keyring.backends.OS_X
	SecretService = keyring.backends.SecretService
	KWallet = keyring.backends.kwallet
	chainer = keyring.backends.chainer

[egg_info]
tag_build = 
tag_date = 0