1[bdist_wheel]
2universal = 1
3
4[metadata]
5license_file = LICENSE
6name = keyrings.alt
7author = Jason R. Coombs
8author_email = jaraco@jaraco.com
9description = Alternate keyring implementations
10long_description = file:README.rst
11url = https://github.com/jaraco/keyrings.alt
12classifiers =
13	Development Status :: 5 - Production/Stable
14	Intended Audience :: Developers
15	License :: OSI Approved :: MIT License
16	Programming Language :: Python :: 2.7
17	Programming Language :: Python :: 3
18
19[options]
20packages = find:
21include_package_data = true
22python_requires = >=2.7
23install_requires =
24	six
25setup_requires = setuptools_scm >= 1.15.0
26
27[options.packages.find]
28exclude =
29	tests
30
31[options.extras_require]
32testing =
33	pytest >= 3.5, !=3.7.3
34	pytest-checkdocs
35	pytest-flake8
36
37	backports.unittest_mock
38	keyring[test] >= 10.3.1
39
40	fs>=0.5,<2
41	pycrypto; sys_platform!="win32" or python_version=="2.7"
42
43	gdata; python_version=="2.7"
44
45	python-keyczar; python_version=="2.7"
46docs =
47	sphinx
48	jaraco.packaging >= 3.2
49	rst.linker >= 1.9
50
51[options.entry_points]
52keyring.backends =
53	file = keyrings.alt.file
54	Gnome = keyrings.alt.Gnome
55	Google = keyrings.alt.Google
56	keyczar = keyrings.alt.keyczar
57	multi = keyrings.alt.multi
58	pyfs = keyrings.alt.pyfs
59	Windows (alt) = keyrings.alt.Windows
60
61[egg_info]
62tag_build =
63tag_date = 0
64
65