-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.22 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.22 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
46
from setuptools import setup, find_packages
import os
import platform
DESCRIPTION = "A simple lightweight python wrapper for the Microsoft Cognitive Services."
VERSION = '0.3.4'
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.md').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
'Topic :: Software Development :: Libraries :: Python Modules',
]
KEYWORDS = ['Microsoft', 'Cognitive Services', 'API', 'Search']
INSTALL_REQUIRES = [
'requests',
]
setup(
name='py-ms-cognitive',
#packages = ['py-ms-cognitive'],
packages = find_packages(),
version=VERSION,
author=u'Tristan Tao',
author_email='tristan@teamleada.com',
url='https://github.com/tristantao/py-ms-cognitive',
license='MIT',
keywords=KEYWORDS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
test_suite='nose.collector',
tests_require=['nose'],
)