mirror of
https://codeberg.org/Freedium-cfd/web.git
synced 2026-03-11 09:04:37 +00:00
25 lines
818 B
Python
25 lines
818 B
Python
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',
|
|
)
|