-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hakan Ardo
committed
Nov 6, 2024
1 parent
402ec2c
commit e326b3e
Showing
3 changed files
with
29 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#!/bin/sh | ||
|
||
set -e | ||
|
||
if [ ! -z "`git diff`" ]; then | ||
echo Please commit first | ||
exit | ||
fi | ||
|
||
git tag -a v$(python -c 'import setup; print(setup.__version__)') -m release | ||
git push --tags | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,18 @@ | |
with open(os.path.join(os.path.dirname(__file__), "sskit", "version.py")) as fp: | ||
exec(fp.read()) | ||
|
||
setup( | ||
name='sskit', | ||
description='Spiideo Scenes development Kit', | ||
long_description=''' | ||
Development Kit for the Spiideo SoccerNet SynLoc task and Challange | ||
''', | ||
version=__version__, | ||
packages=['sskit'], | ||
zip_safe=False, | ||
url='https://github.com/Spiideo/sskit', | ||
author='Hakan Ardo', | ||
author_email='[email protected]', | ||
license='MIT', | ||
) | ||
if __name__ == '__main__': | ||
setup( | ||
name='sskit', | ||
description='Spiideo Scenes development Kit', | ||
long_description=''' | ||
Development Kit for the Spiideo SoccerNet SynLoc task and Challange | ||
''', | ||
version=__version__, | ||
packages=['sskit'], | ||
zip_safe=False, | ||
url='https://github.com/Spiideo/sskit', | ||
author='Hakan Ardo', | ||
author_email='[email protected]', | ||
license='MIT', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version_info__ = (0, 1, 0) | ||
__version_info__ = (0, 2, 0) | ||
__version__ = '.'.join(str(i) for i in __version_info__) |