-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 2.16 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
# ##################################################################################################
# Disclaimer #
# This file is a python3 translation of AutoDockTools (v.1.5.7) #
# Modifications made by Valdes-Tresanco MS (https://github.com/Valdes-Tresanco-MS) #
# Tested by Valdes-Tresanco-MS and Valdes-Tresanco ME #
# There is no guarantee that it works like the original distribution, #
# but feel free to tell us if you get any difference to correct the code. #
# #
# Please use this cite the original reference. #
# If you think my work helps you, just keep this note intact on your program. #
# #
# Modification date: 15/06/20, 8:27 p. m. #
# #
# ##################################################################################################
from setuptools import setup
import versioneer
setup(
name='AutoDockTools_py3',
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
packages=['MolKit', 'MolKit.data', 'MolKit.pdb2pqr', 'MolKit.pdb2pqr.src', 'MolKit.pdb2pqr.propka',
'MolKit.pdb2pqr.pdb2pka', 'MolKit.pdb2pqr.pdb2pka.substruct', 'MolKit.pdb2pqr.pdb2pka.ligandclean',
'MolKit.pdb2pqr.extensions', 'PyBabel', 'mglutil', 'mglutil.math', 'mglutil.util',
'AutoDockTools', 'AutoDockTools.Utilities24'],
url='https://github.com/Valdes-Tresanco-MS/AutoDockTools_py3',
license='MGLTools LICENSE',
author='MS. Valdes-Trasanco and ME. Valdes-Tresanco ',
author_email='[email protected]',
description='Translation of ADT to python3.x'
)