-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (24 loc) · 787 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (24 loc) · 787 Bytes
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
### Head detection
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
# Handle version number with optional .dev postfix when building a develop branch
# on AppVeyor.
VERSION = '1.1.0'
setup(
name='head_detection',
version=VERSION,
description='Head detector for plug and predict',
author='Ramana Subramanyam',
url='https://gitlab.inria.fr/rsundara/head_detection',
license='MIT',
packages=['head_detection.models', 'head_detection.vision', 'head_detection.data'],
include_package_data=True,
keywords='head detection',
long_description=long_description,
long_description_content_type='text/markdown',
)