-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (44 loc) · 1.68 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
46
47
48
49
50
import os
from setuptools import setup, find_packages
if os.path.exists('README.md'):
long_description = open('README.md').read()
else:
long_description = '''A toolkit for resolving chemical SMILES from structural diagrams.'''
setup(
name='reactiondataextractor',
version='2.0.0',
author='Damian Wilary',
author_email='[email protected]',
license='MIT',
url='https://github.com/dmw51/reactiondataextractor2',
description='A toolkit for converting chemical reaction schemes into a machine-readable format.',
keywords='image-mining mining chemistry cheminformatics OCR reaction scheme structure diagram html computer vision science scientific',
packages=find_packages(),
tests_require=['pytest'],
include_package_data=True,
install_requires=[
'detectron2 @ git+https://github.com/facebookresearch/detectron2',
'decimer @ git+https://github.com/dmw51/DECIMER-Image_Transformer.git',
'tesserocr==2.5.1',
'scipy==1.9',
'numpy',
'scikit-learn',
'cirpy',
'opencv-contrib-python',
'pypotrace==0.3',
'protobuf==3.20.*',
'matplotlib'
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
)