forked from jcheong0428/facesync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.19 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
# from nltools.version import __version__
from setuptools import setup, find_packages
__version__ = '0.0.9'
# try:
# from setuptools.core import setup
# except ImportError:
# from distutils.core import setup
extra_setuptools_args = dict(
tests_require=['pytest']
)
setup(
name='facesync',
version=__version__,
author='Jin Hyun Cheong',
author_email='[email protected]',
url='https://github.com/jcheong0428/facesync',
download_url = 'https://github.com/jcheong0428/facesync/tarball/0.9',
install_requires=['numpy', 'scipy'],
packages=find_packages(exclude=['facesync/tests']),
package_data={'facesync': ['resources/*']},
license='LICENSE.txt',
description='A Python package to sync videos based on audio',
long_description='facesync is a python package that allows users to synchronize multiple videos based on audio.',
keywords = ['psychology', 'preprocessing', 'video','audio','facecam','syncing'],
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
],
**extra_setuptools_args
)