Datasets:

Languages:
English
ArXiv:
License:
mattdeitke commited on
Commit
496c487
1 Parent(s): 3e167e7

add setup file

Browse files
Files changed (1) hide show
  1. setup.py +26 -0
setup.py CHANGED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import find_packages, setup
2
+
3
+ # Read the README content
4
+ with open("README.md", "r", encoding="utf-8") as fh:
5
+ long_description = fh.read()
6
+
7
+ # Read requirements from requirements.txt
8
+ with open("requirements.txt", "r", encoding="utf-8") as f:
9
+ requirements = [line.strip() for line in f.readlines()]
10
+
11
+ setup(
12
+ name="objaverse_xl",
13
+ version="0.1.0",
14
+ author="Allen Institute for AI",
15
+ author_email="mattd@allenai.org",
16
+ description="Objaverse-XL is an open dataset of over 10 million 3D objects",
17
+ long_description=long_description,
18
+ long_description_content_type="text/markdown",
19
+ url="https://github.com/yourusername/objaverse_xl",
20
+ packages=find_packages(),
21
+ classifiers=[
22
+ "Programming Language :: Python :: 3",
23
+ "License :: OSI Approved :: Apache Software License",
24
+ ],
25
+ install_requires=requirements,
26
+ )