-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·39 lines (38 loc) · 1.54 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
import os
from codecs import open
from setuptools import setup
setup(
name='doppler_env',
version='0.3.1',
python_requires='>=3.6',
description='Inject Doppler secrets as environment variables into your Python application during local development with debugging support for PyCharm and Visual Studio Code.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dopplerhq/python-doppler-env',
project_urls={
'Bug Reports': 'https://github.com/dopplerhq/python-doppler-env/issues',
'Source': 'https://github.com/dopplerhq/python-doppler-env',
},
author='Doppler',
author_email='[email protected]',
license='APL 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='doppler, environment variables, app secrets, app config, os.environ',
packages=['doppler_env'],
package_dir={'': 'src'},
install_requires=['pip', 'python-dotenv'],
extras_require={'dev': ['check-manifest'], 'test': []},
package_data={},
data_files=[(os.path.sep, ["doppler_env.pth"])],
)