This repository has been archived by the owner on Jun 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (36 loc) · 1.51 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
import os
from setuptools import setup, find_packages
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
else:
long_description = '''A command-line tool and library for extraction of chemical entities from text and 2D structures.'''
setup(
name='MolMiner',
version='1.0.0',
author='Jiri Novotny',
author_email='[email protected]',
license='MIT',
url='https://github.com/gorgitko/molminer',
packages=find_packages(),
description='A command-line tool and library for extraction of chemical entities from text and 2D structures.',
long_description=long_description,
keywords='text-mining mining chemistry cheminformatics nlp science scientific ocsr ner',
zip_safe=False,
entry_points={'console_scripts': ['molminer = molminer.cli:cli']},
#tests_require=['pytest'],
install_requires=['joblib', 'molvs', 'python-magic', 'click', 'pubchempy', 'chemspipy'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
],
)