-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
36 lines (33 loc) · 1.04 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
import setuptools
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r") as fh:
long_description = fh.read()
with open(os.path.join(here, "sparknlp_display/VERSION"), "r") as fh:
app_version = fh.read().strip()
setuptools.setup(
name="spark-nlp-display",
version=app_version,
author="John Snow Labs",
author_email="john@johnsnowlabs.com",
description="Visualization package for Spark NLP",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://nlp.johnsnowlabs.com",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=2.7',
include_package_data=True,
install_requires=[
'spark-nlp',
'ipython',
'svgwrite==1.4',
'pandas',
'numpy'
]
)