27 lines
876 B
Python
27 lines
876 B
Python
# setup.py
|
|
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
# Read requirements from requirements.txt
|
|
with open("requirements.txt") as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name='bi_utils',
|
|
version='0.1.0',
|
|
description='A Bi Utils Code',
|
|
long_description_content_type="text/markdown",
|
|
author='BI',
|
|
author_email='BI@bi.ir',
|
|
url='https://git.d.aiengines.ir/bi/bi_utils', # Replace with your repository URL
|
|
packages=find_packages(),
|
|
install_requires=requirements, # Use the requirements from the file
|
|
include_package_data=True, # Ensure non-code files are included if necessary
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MIT License', # Change if using a different license
|
|
'Operating System :: OS Independent',
|
|
],
|
|
python_requires='>=3.7',
|
|
) |