Datasets:

Languages:
English
ArXiv:
License:
File size: 884 Bytes
496c487
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7f17d65
496c487
 
 
 
 
 
 
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
from setuptools import find_packages, setup

# Read the README content
with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

# Read requirements from requirements.txt
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,
)