-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·36 lines (32 loc) · 988 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 26 16:03:13 2020
@author: rita
"""
import os
from setuptools import setup
setup(
name = "collocater",
version = "0.3",
author = "Rita Tapia Oregui",
author_email = "rtapiaoregui@gmail.com",
description = ("Package for retrieving collocations from text with Spacy"),
long_description_content_type="text/markdown",
keywords = "Collocations Finder",
url = "https://github.com/rtapiaoregui/collocater",
packages=['collocater'],
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
install_requires=[
'beautifulsoup4>=4.6.3',
'joblib>=0.14.1',
'lxml>=4.2.5',
'pandas>=1.0.1',
'regex>=2018.1.10',
'requests>=2.21.0',
'spacy>=2.2.3'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'spacy'],
include_package_data=True,
)