-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (39 loc) · 987 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
33
34
35
36
37
38
39
40
from setuptools import find_packages, setup
setup(
name="brise_plandok",
version="0.1",
description="Tools for the text documents of the Vienna Zoning Plan built in the BRISE project", # noqa
url="http://github.com/recski/brise-nlp",
author="Gabor Recski, Adam Kovacs",
author_email="gabor.recski@tuwien.ac.at",
license="tbd",
install_requires=[
"black==21.12b0",
"click<8.0",
"flask",
"flake8",
"graphviz",
"imodels",
"logging_json",
"networkx",
"nltk",
"numberpartitioning",
"numpy",
"openpyxl",
"pandas",
"pre-commit",
"protobuf<=3.20",
"pydot",
"simplejson",
"sklearn",
"spacy>=2.3.0",
"streamlit==1.3.1",
"torch",
"transformers",
"tuw-nlp==0.0.9",
"xpotato==0.1.4",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)