-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (45 loc) · 1.54 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
51
52
#!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import sys
if sys.version_info[0] < 3:
raise Exception("PubRunner requires Python 3")
VERSION='0.5.4'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.readlines()
setup(name='pubrunner',
version=VERSION,
description='A framework to rerun text mining tools on the latest publications',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
url='https://github.com/jakelever/pubrunner',
author='Jake Lever',
author_email='[email protected]',
license='MIT',
packages=['pubrunner'],
install_requires=requirements,
include_package_data=True,
entry_points = {
'console_scripts': ['pubrunner=pubrunner.command_line:main',
'pubrunner_convert=pubrunner.convert:main',
'pubmed_hash=pubrunner.pubmed_hash:main'],
},
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])