-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.13 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.13 KB
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
from setuptools import setup, find_packages
setup(
name='Rbbm',
version='0.0.2',
url='https://github.com/J-Miao/labelling_explanation',
author='Author Name',
author_email='author@gmail.com',
description='Description of my package',
packages=find_packages(),
install_requires=["colorful",
"gensim",
"ipython",
"lark",
"lime",
"matplotlib",
"names",
"networkx",
"nltk",
"numpy",
"pandas",
"psycopg2_binary",
"pyitlib",
"pytest",
"python_Levenshtein",
"requests",
# "scipy",
"setuptools",
"SQLAlchemy",
# "tensorflow",
"textblob",
"torch",
"tqdm",
"transformers"],
entry_points={
'console_scripts': [
'rbbm=rbbm_src.main:main',
]},
)