-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (32 loc) · 1.29 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
from setuptools import setup, find_packages
setup(
name='OpenChemIE',
version='0.1.0',
author='Alex Wang',
author_email='[email protected]',
url='https://github.com/CrystalEye42/OpenChemIE',
packages=find_packages(),
package_dir={'openchemie': 'openchemie'},
python_requires='>=3.7',
install_requires=[
"numpy",
"torch>=1.10.0,<2.0",
"transformers>=4.6.0",
"layoutparser[effdet]",
"pdf2image",
"PyPDF2",
"pdftotext",
"opencv-python==4.5.5.64",
"opencv-python-headless==4.5.4.60",
"Pillow==9.5.0",
"ipython",
"RxnScribe @ git+https://github.com/Ozymandias314/MolDetect.git",
"MolScribe @ git+https://github.com/CrystalEye42/MolScribe.git@250f683",
"ChemIENER @ git+https://github.com/Ozymandias314/ChemIENER.git",
"chemrxnextractor @ git+https://github.com/CrystalEye42/ChemRxnExtractor.git@0f9529d",
],
dependency_links=[
"git+https://github.com/Ozymandias314/MolDetect.git",
"git+https://github.com/CrystalEye42/MolScribe.git@250f683",
"git+https://github.com/jiangfeng1124/ChemRxnExtractor.git",
])