-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·38 lines (32 loc) · 1.47 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
32
33
34
35
36
37
38
from setuptools import setup, find_packages
exec(open('facepplib/version.py').read())
setup(name='python-facepp',
version=globals()['__version__'],
keywords='face++ faceplusplus facepp python-facepp facepplib',
description='Library for communicating with a Face++ facial recognition service',
long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read(),
packages=find_packages(),
url='https://github.com/yanminhui/python-facepp',
license='MIT License',
author='yanminhui',
author_email='[email protected]',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=['requests>=2.20.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Internet :: WWW/HTTP',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'
],
zip_safe=False)