-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 1.1 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
'''
libChEBIpy (c) University of Manchester 2015
libChEBIpy is licensed under the MIT License.
To view a copy of this license, visit <http://opensource.org/licenses/MIT/>.
@author: neilswainston
'''
from setuptools import find_packages, setup
setup(name='libChEBIpy',
version='1.0.10',
description='libChEBIpy: a Python API for accessing the ChEBI database',
long_description='libChEBIpy: a Python API for accessing the ChEBI ' +
'database',
url='http://github.com/synbiochem/libChEBIpy',
author='Neil Swainston',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='chemistry cheminformatics ChEBI',
packages=find_packages(),
test_suite='libchebipy.test',
install_requires=['requests', 'six'])