-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 993 Bytes
/
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
import itertools
from setuptools import find_packages, setup # type: ignore
VERSION = '1.4'
EXTRAS = {
"sentry": ["sentry_sdk"],
}
EXTRAS['all'] = list(itertools.chain(*EXTRAS.values()))
setup(
name='envvarconf',
version=VERSION,
packages=find_packages(),
url='https://github.com/a1fred/envvarconf',
license='MIT',
author='a1fred',
author_email='demalf@gmail.com',
description='Safe app configuration from environment variables without extra dependencies',
classifiers=[
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
extras_require=EXTRAS,
test_suite="tests",
)