forked from metapub/metapub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.08 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
import glob
import os
from setuptools import setup, find_packages
setup(
name='metapub',
version='0.5.12',
description='Pubmed / NCBI / eutils interaction library, handling the metadata of pubmed papers.',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/metapub/metapub',
author='Naomi Most',
maintainer='Naomi Most',
author_email='naomi@nthmost.com',
maintainer_email='naomi@nthmost.com',
license='Apache 2.0',
packages=find_packages(),
entry_points={'console_scripts': [
'pubmed_article = metapub.pubmedfetcher_cli:main',
'convert = metapub.convert:main',
]
},
extras_require={
'test': [
'tox',
'pytest',
],
},
install_requires=[
'setuptools',
'lxml',
'lxml_html_clean',
'requests',
'eutils',
'habanero',
'tabulate',
'cssselect',
'unidecode',
'docopt',
'six',
'coloredlogs',
'python-Levenshtein',
],
)