Skip to content

Commit

Permalink
setup.py updated topic, added license
Browse files Browse the repository at this point in the history
  • Loading branch information
wmuron committed Jan 8, 2020
1 parent 9788ce9 commit ed79dab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ __pycache__/*
*/__pycache__/*
*.egg-info/*
.mypy_cache/*
.vscode/*
.vscode/*
build/*
dist/*
1 change: 1 addition & 0 deletions examples/simple_example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import numpy as np

import motpy
from motpy import MultiObjectTracker, Detection

# format [xmin, ymin, xmax, ymax]
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

setup(
name='motpy',
version='0.0.5',
version='0.0.6',
url='https://github.com/wmuron/motpy.git',
download_url='https://github.com/wmuron/motpy/archive/v_01.tar.gz',
download_url='https://github.com/wmuron/motpy/releases/tag/v0.0.6-alpha',
author='Wiktor Muron',
author_email='[email protected]',
description='Library for track-by-detection multi object tracking implemented in python',
packages=find_packages('motpy'),
packages=find_packages(exclude=("tests",)),
python_requires='>3.6',
install_requires=['numpy',
'scipy',
Expand All @@ -19,6 +19,7 @@
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Computer Vision :: Multi Object Tracking'
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License'
]
)

0 comments on commit ed79dab

Please sign in to comment.