forked from chembl/chembl_beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.27 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
#!/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
if sys.version_info < (2, 7, 3) or sys.version_info >= (2, 7, 6):
raise Exception('ChEMBL software stack requires python 2.7.3 - 2.7.5')
setup(
name='chembl_beaker',
version='0.0.6',
author='Michal Nowotka',
author_email='[email protected]',
description='RDKit in the Bottle on Tornado',
url='https://www.ebi.ac.uk/chembl/',
license='CC BY-SA 3.0',
packages=['chembl_beaker'],
long_description=open('README.rst').read(),
install_requires=['bottle>=0.11.6',
'tornado>=2.4'],
include_package_data=False,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: Creative Commons :: Attribution-ShareAlike 3.0 Unported',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Chemistry'],
zip_safe=False,
)