-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (21 loc) · 873 Bytes
/
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
import setuptools
setuptools.setup(
name="internal_glide_contestant",
version="0.1.0",
url="https://github.com/drugdata/custom_celpp_contestant",
author="Jeff Wagner",
author_email="[email protected]",
description="Internal glide contestant for D3R CELPP competition",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=["d3r"],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
scripts = ['internal_glide_contestant/internal_glide_runner_dock.py',
'internal_glide_contestant/internal_glide_runner_ligand_prep.py',
'internal_glide_contestant/internal_glide_runner_protein_prep.py']
)