1[build-system]
2requires = ["flit_core >=2,<4"]
3build-backend = "flit_core.buildapi"
4
5[tool.flit.metadata]
6module = "confuse"
7author = "Adrian Sampson"
8author-email = "adrian@radbox.org"
9home-page = "https://github.com/beetbox/confuse"
10requires = [
11    "pyyaml"
12]
13description-file = "README.rst"
14requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4"
15classifiers = [
16    'Intended Audience :: Developers',
17    'License :: OSI Approved :: MIT License',
18    'Programming Language :: Python :: 2',
19    'Programming Language :: Python :: 2.7',
20    'Programming Language :: Python :: 3',
21    'Programming Language :: Python :: 3.4',
22    'Programming Language :: Python :: 3.5',
23    'Programming Language :: Python :: 3.6',
24    'Programming Language :: Python :: 3.7',
25    'Programming Language :: Python :: 3.8',
26    'Programming Language :: Python :: 3.9',
27    'Programming Language :: Python :: 3.10',
28]
29
30[tool.flit.metadata.requires-extra]
31test = [
32    "pathlib; python_version == '2.7'"
33]
34