Add basic setup.py

This commit is contained in:
Etienne Buehrle
2021-07-20 10:42:47 +00:00
parent 793bb64af4
commit 4ae2877dcf
17 changed files with 27 additions and 6 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
from setuptools import setup, find_packages
setup(
name='interimit',
version='0.0.1',
url='https://github.com/sisl/InteractionImitation/',
author='Arec Jamgochian',
author_email='jamgochian95@gmail.com',
description='Imitation Learning on INTERACTION Dataset',
packages=find_packages(),
install_requires=[
'tikzplotlib',
'torch',
'pytest',
'json5',
'gym',
'intersim @ git+https://github.com/sisl/InteractionSimulator',
],
)