forked from microsoft/Cognitive-Face-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 1.11 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
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
File: setup.py
Description: Setup script to build and distribute cognitive_face module.
"""
import io
from setuptools import find_packages
from setuptools import setup
README = 'README.md'
def readme():
"""Parse README for long_description."""
return io.open(README, encoding='utf-8').read()
setup(
name='cognitive_face',
version='1.4.2',
packages=find_packages(exclude=['tests']),
install_requires=['requests'],
author='Microsoft',
description='Python SDK for the Cognitive Face API',
long_description=readme(),
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/Microsoft/Cognitive-Face-Python',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Image Recognition',
],
test_suite='nose.collector',
tests_require=['nose'])