forked from chembl/chembl_webresource_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.79 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
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'mnowotka'
import sys
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='chembl-webresource-client',
version='0.9.23',
author='Michal Nowotka',
author_email='[email protected]',
description='Python client fot accessing ChEMBL webservices.',
url='https://www.ebi.ac.uk/chembldb/index.php/ws',
license='Apache Software License',
packages=['chembl_webresource_client'],
long_description="""
Documentation and repository: https://github.com/chembl/chembl_webresource_client.
This is the only official Python client library developed and supported by ChEMBL (https://www.ebi.ac.uk/chembl/) group.
The library helps accessing ChEMBL data and cheminformatics tools from Python.
You don't need to know how to write SQL.
You don't need to know how to interact with REST APIs.
You don't need to compile or install any cheminformatics framework.
Results are cached.
""",
install_requires=[
'six',
'urllib3',
'requests>=2.18.4',
'requests-cache>=0.4.7',
'grequests==0.2.0',
'easydict',
'gevent>=1.2.2',
'gevent-openssl',
'unittest2six',
],
tests_require = ['pytest-timeout'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Chemistry'],
zip_safe=False,
)