|
from setuptools import find_packages, setup |
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh: |
|
long_description = fh.read() |
|
|
|
|
|
with open("requirements.txt", "r", encoding="utf-8") as f: |
|
requirements = [line.strip() for line in f.readlines()] |
|
|
|
setup( |
|
name="objaverse_xl", |
|
version="0.1.0", |
|
author="Allen Institute for AI", |
|
author_email="mattd@allenai.org", |
|
description="Objaverse-XL is an open dataset of over 10 million 3D objects", |
|
long_description=long_description, |
|
long_description_content_type="text/markdown", |
|
url="https://huggingface.co/datasets/allenai/objaverse-xl", |
|
packages=find_packages(), |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: Apache Software License", |
|
], |
|
install_requires=requirements, |
|
) |
|
|