12 lines
216 B
Python
12 lines
216 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="fast_td3",
|
|
version="0.1.0",
|
|
description="FastTD3 implementation",
|
|
author="",
|
|
author_email="",
|
|
url="",
|
|
packages=find_packages(),
|
|
)
|