Skip to content

Commit

Permalink
Merge pull request #4 from varunagrawal/main
Browse files Browse the repository at this point in the history
Fixed setup.py and added gitignore
  • Loading branch information
j96w authored Feb 23, 2024
2 parents 47bfd15 + dc738ff commit 1a13f5f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/__pycache__
*.egg-info

datasets/
trained_models_highlevel

*.mp4
25 changes: 15 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
#!/usr/bin/env python

from distutils.core import setup
import os.path
from setuptools import find_packages, setup

setup(name='mimicplay',
version='1.0',
description='',
author='Chen Wang',
author_email='[email protected]',
url='https://mimic-play.github.io',
packages=[],
)
setup(
name='mimicplay',
packages=[
package for package in find_packages()
if package.startswith("mimicplay")
],
version='1.0',
description='',
author='Chen Wang',
author_email='[email protected]',
url='https://mimic-play.github.io',
include_package_data=True,
python_requires='>=3',
)

0 comments on commit 1a13f5f

Please sign in to comment.