-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 910 Bytes
/
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
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
# These requirements are only needed for some of
# the code. Install using "pip install .[all]"
required_all = [
"fastai",
"tensorboardx",
]
setup(
name='camera-analytics',
description='Neural network based visual door state prediction',
long_description='''
AXIS network camera application for visual analytics
to classify the state of a door (open/closed)''',
version="0.0",
packages=['camlytics'],
url='https://github.com/daniel-falk/camera-analytics',
author='Daniel Falk',
author_email='[email protected]',
license='MIT',
install_requires=required,
extras_require={
'all': required_all
},
entry_points={
'console_scripts': [
'annotate=camlytics.annotation.annotate:do_annotate'
],
}
)