#!/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=[ "ray~=2.4.0", "astunparse~=1.6.3", "beautifulsoup4~=4.11.1", "intervaltree~=3.1.0", "lxml~=4.9.1", "matplotlib~=3.4.3", "numpy~=1.22.4", "plotly~=5.8.2", "polytope~=0.2.3", "Pympler~=1.0.1", "pyvista~=0.38.3", "scipy~=1.9", "six~=1.14.0", "sympy~=1.6.2", "torch~=1.13.1", "tqdm~=4.64.1", "z3-solver~=4.8.17.0", "treelib~=1.6.1", "portion~=2.3.1", "graphviz~=0.20", ], classifiers=[ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", "Programming Language :: Python :: 3.8", ], )