forked from shon-otmazgin/fastcoref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 930 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, find_packages
import sys
if sys.version_info < (3,7):
sys.exit('Python < 3.7 is not supported')
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='fastcoref',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.1.1+bsci',
license='MIT',
author="Shon Otmazgin, Arie Cattan, Yoav Goldberg",
author_email='[email protected]',
packages=['fastcoref', 'fastcoref.coref_models', 'fastcoref.utilities', 'fastcoref.spacy_component'],
url='https://github.com/shon-otmazgin/fastcoref',
install_requires=[
'tqdm>=4.64.0',
'numpy>=1.21.6',
'scipy>=1.7.3',
'spacy>=3.0.6',
'torch>=1.10.0',
'transformers>=4.11.3',
'pandas>=1.4.1'
],
)