Skip to content

Commit ed79dab

Browse files
committed
setup.py updated topic, added license
1 parent 9788ce9 commit ed79dab

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ __pycache__/*
22
*/__pycache__/*
33
*.egg-info/*
44
.mypy_cache/*
5-
.vscode/*
5+
.vscode/*
6+
build/*
7+
dist/*

examples/simple_example.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import numpy as np
22

3+
import motpy
34
from motpy import MultiObjectTracker, Detection
45

56
# format [xmin, ymin, xmax, ymax]

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

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

0 commit comments

Comments
 (0)