-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (56 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from __future__ import with_statement
from setuptools import setup, find_packages
import os
__version__ = None
script_dir = os.path.dirname(__file__)
with open(os.path.join(script_dir, 'plasticity/version.py')) as f:
exec(f.read())
setup_requires = [
'pytest-runner',
]
install_requires = [
'six',
]
tests_require = [
'pytest == 3.4.1',
]
extras_require = {
':python_version<"3.0"': [
"requests[security] >= 2.0.0",
],
':python_version>="3.0"': [
"requests >= 2.0.0",
],
'test': tests_require,
}
setup(
name='plasticity',
packages=find_packages(exclude=['tests', 'tests.*']),
version=__version__,
description='A Python package for the Plasticity API.',
author='Plasticity',
author_email='opensource@plasticity.ai',
url='https://github.com/Plasticity/plasticity-python',
keywords=['plasticity', 'nlp', 'nlu', 'natural language'],
license='MIT',
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)