forked from enricobacis/wos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 816 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from sys import version_info
with open('README.rst') as README:
long_description = README.read()
long_description = long_description[long_description.index('Description'):]
with open('VERSION') as VERSION:
version = VERSION.read().strip()
suds_install_requires = ['suds'] if version_info < (3, 0) else ['suds-py3']
setup(name='wos',
version=version,
description='Web of Science client using API v3.',
long_description=long_description,
install_requires=['limit'] + suds_install_requires,
url='http://github.com/enricobacis/wos',
author='Enrico Bacis',
author_email='enrico.bacis@gmail.com',
license='MIT',
packages=['wos'],
scripts=['scripts/wos'],
keywords='wos isi web of science knowledge api client')