- Created .gitignore to exclude build artifacts, Python bytecode, and environment files. - Added README.md with project description, features, use cases, and examples. - Implemented Environment class for managing environment variables with mode support. - Defined casting functions for various data types. - Established setup.py for package distribution.
21 lines
605 B
Python
21 lines
605 B
Python
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',
|
|
)
|