-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (34 loc) · 1.27 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
# coding=utf-8
import os
from setuptools import find_packages, setup
long_description = open('README.md', encoding="utf8").read()
setup(
name='cathodedataextractor',
version='0.0.4',
description='A document-level information extraction pipeline for layered cathode materials for sodium-ion batteries.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='text-mining information-extraction nlp battery-information',
author='Yuxiao Gou',
author_email='[email protected]',
url='https://github.com/GGNoWayBack/cathodedataextractor',
install_requires=[
'word2number',
'pdfminer.six >=20160614, <=20221105 ; python_version < "3.8"',
'chemdataextractor2==2.2.2',
'text2chem==0.0.3',
'pymatgen',
],
license='MIT',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing',
],
)