-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (49 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
"""
Setup script for HiMap
You can install himap with
python setup.py install
"""
import sys,os
from os.path import relpath, join
import versioneer
from setuptools import setup, find_packages
if sys.argv[-1] == 'setup.py':
print("To install, run 'python setup.py install'")
print()
descr = """
High Information Mapper (HiMap), successor of the Lead
Optimization Mapper (LOMAP) is an automated algorithm
to plan efficient relative free energy calculations between
potential ligands within a substantial of compounds'
"""
setup(
name = 'himap',
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
description = 'High Information Mapper',
long_description = descr,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'
],
keywords=[ 'alchemical free energy setup', 'perturbation network' ],
url = 'https://github.com/MobleyLab/HiMap',
author = 'Mary Pitman, Gaetano Calabro, David Mobley',
maintainer = 'Mary Pitman and David Mobley',
author_email = 'mpitman -at- uci.edu',
license = 'GNU 3.0',
platforms = ['Linux-64', 'Mac OSX-64', 'Unix-64'],
packages = find_packages()+['test'],
include_package_data = True,
entry_points = {'console_scripts':['lomap=lomap.dbmol:startup']},
zip_safe = False
)