web/database-lib/setup.py

26 lines
818 B
Python
Raw Permalink Normal View History

2024-02-23 05:47:31 +00:00
from setuptools import setup, find_packages
# Function to read the contents of the requirements file
def read_requirements():
with open('requirements.txt', 'r') as req:
return req.read().splitlines()
setup(
name='database_lib',
version='0.1.0',
author='Freedium community',
author_email='admin@freedium.cfd',
description='A dabase helper library from Medium cache',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://codeberg.org/Freedium-cfd/web',
packages=find_packages(),
install_requires=read_requirements(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
2024-11-08 10:13:02 +00:00
)