File size: 208 Bytes
e479c46 | 1 2 3 4 5 6 7 8 9 10 | from setuptools import find_packages, setup
setup(
name="simpler_env",
version="0.0.1",
author="Xuanlin Li",
packages=find_packages(include=["simpler_env*"]),
python_requires=">=3.10",
)
|