forked from cjekel/tindetheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (25 loc) · 977 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
from distutils.core import setup
setup(
name='tindetheus',
version=open('tindetheus/VERSION').read().strip(),
author='Charles Jekel',
author_email='[email protected]',
packages=['tindetheus', 'tindetheus.facenet_clone', 'tindetheus.facenet_clone.align'],
package_data={'tindetheus': ['VERSION', '*.npy', 'facenet_clone/align/*.npy']},
entry_points={'console_scripts': ['tindetheus = tindetheus:command_line_run']},
url='https://github.com/cjekel/tindetheus',
license='MIT License',
description='Build personalized machine learning models for Tinder based on your historical preference',
long_description=open('README.rst').read(),
platforms=['any'],
install_requires=[
"numpy >= 1.11.3",
"matplotlib >= 2.0.0",
"imageio >= 2.2.0",
"scikit-learn >= 0.19.0",
"scikit-image >= 0.13.1",
"tensorflow >= 1.7.0",
"pandas >= 0.21.0",
"future >= 0.16.0"
],
)