-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.51 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.51 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
47
#! /usr/bin/env python
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='MeaningCloud-python',
version='2.0.0',
description='Official Python SDK for MeaningCloud APIs',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/MeaningCloud/meaningcloud-python',
author='MeaningCloud',
author_email='support@meaningcloud.com',
keywords='nlp, MeaningCloud, text analytics',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis'
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'requests[security]'
],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
)