-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 951 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 951 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
#from setuptools import setup
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(name='exploface',
version='0.0.0.dev6',
description='A tool to analyse and convert data coming from the face analysing software Openface (Cambridge).',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/emrecdem/exploface',
keywords='analysis, conversion, facial recoqnition, action units, Openface',
author='B.L. de Vries',
author_email='b.devries@esciencecenter.nl',
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'],
zip_safe=True)