forked from cosanlab/py-feat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.34 KB
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
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import atexit, os, sys
from setuptools import setup, find_packages
from setuptools.command.install import install
with open('requirements.txt') as f:
requirements = f.read().splitlines()
version = {}
with open("feat/version.py") as f:
exec(f.read(), version)
extra_setuptools_args = dict(
tests_require=['pytest']
)
setup(
name='py-feat',
version=version['__version__'],
description="Facial Expression Analysis Toolbox",
long_description="",
author="Jin Hyun Cheong, Tiankang Xie, Sophie Byrne, Luke Chang ",
author_email='jcheong0428@gmail.com',
url='https://github.com/cosanlab/feat',
packages=find_packages(),
package_data = {'feat': ['resources/*','tests/*','tests/data/*']},
scripts=['bin/detect_fex.py'],
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords=['feat','face','facial expression','emotion'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='feat/tests',
**extra_setuptools_args
)