|
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", |
|
version="0.1.0", |
|
description="A package for Xora model inferece", |
|
author="YSapir Weissbuch", |
|
author_email="sapir@lightricks.com", |
|
url="https://github.com/LightricksResearch/xora-core", |
|
packages=find_packages(), |
|
install_requires=parse_requirements('requirements.txt'), |
|
classifiers=[ |
|
'Programming Language :: Python :: 3', |
|
'License :: OSI Approved :: MIT License', |
|
'Operating System :: OS Independent', |
|
], |
|
python_requires='>=3.10', |
|
) |