Spaces:
Runtime error
Runtime error
File size: 1,039 Bytes
c811a04 325137b c811a04 325137b c811a04 325137b c811a04 325137b c811a04 325137b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from setuptools import setup, find_packages
def parse_requirements(filename):
"""Load requirements from a pip requirements file."""
with open(filename, "r") as file:
return file.read().splitlines()
setup(
name="xora-core", # The name of your package
version="0.1.0", # Version number of the package
description="A package for Xora model inferece", # Short description
author="YSapir Weissbuch", # Your name
author_email="sapir@lightricks.com", # Your email
url="https://github.com/LightricksResearch/xora-core", # URL for the project (GitHub, etc.)
packages=find_packages(), # Automatically find all packages inside `xora`
install_requires=parse_requirements(
"requirements.txt"
), # Install dependencies from requirements.txt
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10", # Specify Python version compatibility
)
|