-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 2.71 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
# ##############################################################################
# GPLv3 LICENSE INFO #
# #
# Copyright (C) 2020 Mario S. Valdes-Tresanco and Mario E. Valdes-Tresanco #
# Copyright (C) 2014 Jason Swails, Bill Miller III, and Dwight McGee #
# #
# Project: https://github.com/Valdes-Tresanco-MS/gmx_MMPBSA #
# #
# This program is free software; you can redistribute it and/or modify it #
# under the terms of the GNU General Public License version 3 as published #
# by the Free Software Foundation. #
# #
# This program is distributed in the hope that it will be useful, but #
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY #
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License #
# for more details. #
# ##############################################################################
from setuptools import setup, find_packages
import versioneer
import sys
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
#if sys.version_info[:2] < (3, 8):
# raise RuntimeError("seaborn requires python >= 3.8.")
setup(
name='gmx_MMPBSA',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
package_data={"GMXMMPBSA": ["data/*", 'data/gmxMMPBSA/*', 'GMXMMPBSA.sh']},
license='GPLv3',
author='Mario S. Valdes-Tresanco and Mario E. Valdes-Tresanco ',
author_email='[email protected]',
maintainer='Mario S. Valdes-Tresanco',
maintainer_email='[email protected]',
url='https://github.com/Valdes-Tresanco-MS/gmx_MMPBSA',
description="gmx_MMPBSA is a new tool based on AMBER's MMPBSA.py aiming to perform end-state free energy "
"calculations with GROMACS files",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=['gmx_MMPBSA', 'MMPBSA', 'MMGBSA', 'GROMACS', 'AmberTools'],
# install_requires=['pandas>=1.2.2', 'seaborn>=0.11.1', 'mpi4py>=3.0.3', 'scipy>=1.6.1'],
entry_points={
"console_scripts": [
"gmx_MMPBSA=GMXMMPBSA.app:gmxmmpbsa",
"gmx_MMPBSA_ana=GMXMMPBSA.app:gmxmmpbsa_ana",
"gmx_MMPBSA_test=GMXMMPBSA.app:gmxmmpbsa_test"]}
)