-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 755 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 755 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
import setuptools
setuptools.setup(
name="geonlplify",
version="0.3.18",
url="https://github.com/remydecoupes/GeoNLPlify",
author="Rémy Decoupes",
author_email="remy.decoupes@inrae.fr",
description="GeoNLPlify aims to make variations of an input sentence working on spatial information contained in words",
packages=setuptools.find_packages(),
install_requires=[
"pandas",
"requests",
"spacy==3.4.2",
"tokenizers==0.12.1",
"transformers==4.21.3",
"spacy-transformers==1.1.8",
"torch==1.13.0",
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
],
)