-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 970 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
#from setuptools import setup
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(name='explibrosa',
version='0.0.0.dev1',
description='A tool to analyse and convert data coming from the Librosa python package.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/emrecdem/exploface',
keywords='analysis, conversion, facial recoqnition, action units, Openface',
author='V. van Hees and B.L. de Vries',
author_email='[email protected]',
classifiers=(
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
packages=setuptools.find_packages(),
install_requires=['numpy', 'pandas', 'elanwriter', 'exploface', 'librosa'],
zip_safe=True)