Add basic setup.py
This commit is contained in:
19
setup.py
Normal file
19
setup.py
Normal 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',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user