forked from AutoVerse-ai/Verse-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 687 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="verse",
version="0.1",
description="AutoVerse",
author="Yangge Li, Katherine Braught, Haoqing Zhu",
maintainer="Yangge Li, Katherine Braught, Haoqing Zhu",
maintainer_email="{li213, braught2, haoqing3}@illinois.edu",
packages=find_packages(exclude=["tests", "demo"]),
python_requires=">=3.8",
install_requires=open("requirements.txt").read().split("\n"),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.8",
],
)