-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 863 Bytes
/
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
from setuptools import setup, find_packages
exec(open('journalMiner/__init__.py').read())
DESCRIPTION = 'Python CLI for mining scientific literature.'
LONG_DESCRIPTION = 'This package contains a CLI that allows mining of the EUPMC database for papers that contain hits for keywords.'
# Setting up
setup(
name="journal-miner",
version= __version__ ,
author="George Pearse, James Sanders",
author_email="[email protected]",
url = 'https://github.com/J-E-J-S/pyminer',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
'beautifulsoup4==4.9.3',
'pandas==1.2.2',
'click==7.1.2'
],
entry_points = {
'console_scripts':['pyminer=journalMiner.pyminer:cli']
}
)