-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (30 loc) · 925 Bytes
/
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
from setuptools import setup
import os
def readme():
with open(os.path.dirname(os.path.realpath(__file__)) + '/README.md') as f:
return f.read()
requires = [
'spacy==2.2.3'
]
setup(
name="waterwheel",
version="0.3.0",
author="Govind Sharma",
author_email="govind.sharma@uwaterloo.ca",
description="Spacy Pipeline Component for Hydrologic Entity Extraction",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/gwf-uwaterloo/waterwheel",
install_requires=requires,
packages=['waterwheel'],
package_data={'waterwheel': [
'waterwheel/resources/doc_bins.msgpack'
]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)