-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
43 lines (42 loc) · 1.29 KB
/
setup.py
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
# See LICENSE.txt for license details.
# Copyright (c) 2011-2014 Simplistix Ltd, 2016 onwards Chris Withers
from setuptools import setup, find_packages
setup(
name='configurator',
version='3.2.0',
author='Chris Withers',
author_email='chris@withers.org',
license='MIT',
description=(
"A library for building a configuration store "
"from one or more layered configuration sources"
),
long_description=open('README.rst').read(),
url='https://github.com/Simplistix/configurator',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=["tests"]),
zip_safe=False,
include_package_data=True,
python_requires=">=3.6",
extras_require=dict(
yaml=['pyyaml'],
toml=['tomli; python_version < "3.11"'],
test=[
'jinja2',
'mock',
'pyfakefs',
'pytest',
'pytest-cov',
'requests',
'sybil',
'testfixtures',
'voluptuous; python_version >= "3.7"',
'voluptuous<0.14; python_version < "3.7"',
],
build=['sphinx', 'furo', 'setuptools-git', 'twine', 'wheel']
),
)