forked from biothings/biothings_client.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.67 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
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="biothings_client",
version="0.2.0",
author="Cyrus Afrasiabi, Chunlei Wu",
author_email="[email protected]",
description="Python Client for BioThings API services.",
license="BSD",
keywords="biology variant gene taxon species drug annotation web service client api myvariant mygene",
url="https://github.com/biothings/biothings_client.py",
packages=find_packages(),
long_description=read('README.rst'),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
'requests>=2.3.0',
'nose',
],
extras_require={
'dataframe': ["pandas>=0.18.0"],
'caching': ["requests_cache>=0.4.13"],
'jsonld': ["PyLD>=0.7.2"],
}
)