forked from mcs07/ChemDataExtractor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (42 loc) · 1.71 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
else:
long_description = '''A toolkit for extracting chemical information from the scientific literature.'''
setup(
name='ChemDataExtractor',
version='1.3.0',
author='Matt Swain',
author_email='m.swain@me.com',
license='MIT',
url='https://github.com/mcs07/ChemDataExtractor',
packages=find_packages(),
description='A toolkit for extracting chemical information from the scientific literature.',
long_description=long_description,
keywords='text-mining mining chemistry cheminformatics nlp html xml science scientific',
zip_safe=False,
entry_points={'console_scripts': ['cde = chemdataextractor.cli:cli']},
tests_require=['pytest'],
install_requires=[
'appdirs', 'beautifulsoup4', 'click', 'cssselect', 'lxml', 'nltk', 'pdfminer.six', 'python-dateutil',
'requests', 'six', 'python-crfsuite', 'DAWG', 'PyYAML'
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'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',
'Topic :: Text Processing :: Markup :: HTML',
],
)