forked from CederGroupHub/MatEntityRecognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 762 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
from setuptools import setup, find_packages
__author__ = 'Tanjin He'
__maintainer__ = 'Tanjin He, Ziqin Rong'
__email__ = 'tanjin_he@berkeley.edu, rongzq08@gmail.com'
if __name__ == "__main__":
setup(name='materials_entity_recognition',
version=3.2,
author="Tanjin He",
author_email="tanjin_he@berkeley.edu",
license="MIT License",
packages=find_packages(),
include_package_data=True,
install_requires=[
'tensorflow>=2.4.0',
'tensorflow-addons>=0.12.1',
'spacy',
'chemdataextractor',
'numpy',
'transformers>=4.4.2',
'torch',
'psutil',
],
zip_safe=False)