This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·48 lines (44 loc) · 1.56 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import OpenDiscovery as od
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='OpenDiscovery',
version=od.__version__,
description='Computational Drug Discovery Software',
long_description=read('README.rst'),
author='Gareth Price',
author_email='gareth.price@warwick.ac.uk',
maintainer='Gareth Price',
maintainer_email='gareth.price@warwick.ac.uk',
url='https://github.com/iamgp/OpenDiscovery',
packages=['OpenDiscovery'],
package_dir={'OpenDiscovery': 'OpenDiscovery'},
package_data={'OpenDiscovery': ['lib/vina-osx/vina', 'lib/vina-linux/vina', 'lib/extract.awk']},
include_package_data=True,
install_requires=['argparse','matplotlib', 'pandas', 'numpy', 'termcolor', 'docopt'],
license="GPL",
keywords='OpenDiscovery',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry'
],
scripts=['bin/odscreen'],
# entry_points={
# 'console_scripts': [
# 'odscreen = OpenDiscovery.screen:cli'
# ],
# },
zip_safe=False
)