-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (43 loc) · 1.1 KB
/
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
41
42
43
44
45
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="semconstmining",
packages=find_packages(),
author='Adrian Rebmann',
author_email='adrianrebmann@gmmail.com',
version="0.2.1",
description="long description",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
'tokenizers',
'networkx',
'deprecation',
'matplotlib',
'psutil',
'transformers',
'torch',
'sentence-transformers',
'requests',
'textblob',
'typing-extensions',
'pandas',
'tqdm',
'pylogics',
'numpy==1.26.4',
'gensim',
'scipy==1.12.0',
'joblib==1.2.0',
'spacy>=3.7.5',
'stringcase==1.2.0',
'nltk==3.8.1',
'spacy_langdetect==0.1.2',
'language_data==1.2.0',
'metric-temporal-logic==0.4.0',
'mlxtend==0.21.0',
'func-timeout==4.3.5',
'pm4py==2.5.1',
]
)