-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
40 lines (37 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='umt',
version='0.0.2',
author='Nathan A. Rooy',
author_email='[email protected]',
url='https://github.com/nathanrooy/rpi-urban-mobility-tracker',
description='The easiest way to count pedestrians, cyclists, and vehicles on edge computing devices.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['umt'],
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
install_requires=required,
entry_points={
'console_scripts': [
'umt = umt.umt_main:main'
]
},
package_data={
'umt':[
'models/tflite/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/labelmap.txt',
'models/tflite/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29/detect.tflite',
'models/tpu/mobilenet_ssd_v2_coco_quant/coco_labels.txt',
'models/tpu/mobilenet_ssd_v2_coco_quant/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite',
'deep_sort/*'
]
},
)