forked from gijswobben/pymed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 921 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
26
27
28
29
30
31
32
import os
from setuptools import setup
from setuptools import find_packages
from pymed.version import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pymed",
version=__version__,
author="Gijs Wobben",
author_email="[email protected]",
description=("Python library for access to PubMed"),
license="MIT",
keywords="PubMed PMC",
url="https://github.com/gijswobben/pymed",
packages=find_packages(),
install_requires=["requests>=2.20.0"],
tests_require=["pytest"],
long_description_content_type="text/markdown",
long_description=read("README.md"),
classifiers=[
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
)