forked from metapub/metapub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.08 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.08 KB
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 glob, os
from setuptools import setup, find_packages
setup(
name = 'metapub',
version = '0.5.5',
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',
]
},
install_requires = [
'setuptools',
'lxml',
'requests',
'eutils',
'habanero',
'tabulate',
'cssselect',
'unidecode',
'docopt',
'six',
'tox',
'pytest',
'coloredlogs',
'python-Levenshtein',
],
)