-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
31 lines (31 loc) · 1.12 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
import io
from setuptools import setup
setup(
name='tindetheus',
version='1.0.2',
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']}, # noqa E501
url='https://github.com/cjekel/tindetheus',
license='MIT License',
description='Build personalized machine learning models for Tinder based on your historical preference', # noqa E501
long_description=io.open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
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 < 2.0.0",
"pandas >= 0.21.0",
"future >= 0.16.0",
"joblib >= 0.13.0",
"setuptools >= 38.6.0",
],
)