-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
27 lines (24 loc) · 924 Bytes
/
setup.py
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",
version="0.1.7",
author="Allen Institute for AI",
author_email="mattd@allenai.org",
description="Objaverse is an open dataset with 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,
extras_require={"s3": ["s3fs==0.4.2"]},
)