Skip to content

Commit

Permalink
setup pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Yassine Benzakour committed May 13, 2024
1 parent ba2b822 commit a883494
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 7 additions & 2 deletions oslactionspotting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
__version_info__ = ('0', '1', '2')
__version_info__ = ('0', '1', '3')
__version__ = '.'.join(__version_info__)
__authors__ = ["Silvio Giancola", "Yassine Benzakour"]
__authors_username__ = "giancos"
__author_email__ = ["[email protected]", "[email protected]"]
__github__ = 'https://github.com/OpenSportsLab/OSL-ActionSpotting'
__github__ = 'https://github.com/OpenSportsLab/OSL-ActionSpotting'

from .apis import *
from .core import *
from .datasets import *
from .models import *
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

setup(
name='oslactionspotting', # How you named your package folder (MyLib)
packages=['oslactionspotting'], # Chose the same as "name"
packages= find_packages(),
# packages=['oslactionspotting'], # Chose the same as "name"
# Start with a small number and increase it with every change you make
version=__version__,
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
Expand Down

0 comments on commit a883494

Please sign in to comment.