from setuptools import setup, find_packages setup( name='chipenv', version='0.0.1', packages=find_packages(), install_requires=[ "python-dotenv>=0.21.0" ], author='Chipperfluff', author_email='contact@chipperfluff.at', description='a lightweight environment variable management library for Python', long_description=open('README.md').read(), long_description_content_type='text/markdown', url='https://git.chipperfluff.at/MultinutServices/Multinut', classifiers=[ 'Programming Language :: Python :: 3' ], python_requires='>=3.6', )