-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 2.2 KB
/
setup.py
File metadata and controls
57 lines (54 loc) · 2.2 KB
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
""" pycontact setup
by Maximilian Scheurer, Peter Rodenkirch
"""
from setuptools import setup, find_packages
from setuptools.extension import Extension
from Cython.Distutils import build_ext
from Cython.Build import cythonize
extensions = [Extension("PyContact.cy_modules.cy_gridsearch",
["PyContact/cy_modules/cy_gridsearch.pyx"],
language="c++",
include_dirs=[".", "PyContact/cy_modules/src"],
extra_compile_args=["-std=c++0x"]), ]
setup(
name='pycontact',
version='1.0.5',
description='PyContact',
long_description='Tool for analysis of non-covalent interactions in MD trajectories',
url='https://github.com/maxscheurer/pycontact',
author='Maximilian Scheurer, Peter Rodenkirch',
author_email='mscheurer@ks.uiuc.edu',
license='GPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
],
keywords='computational biophysics simulation biology bioinformatics visualization protein biomolecules dna',
package_dir={'PyContact': 'PyContact'},
packages=find_packages(),
python_requires=">=3.6",
setup_requires=['cython'],
install_requires=['numpy >= 1.16',
'matplotlib',
'mdanalysis >= 0.20.0',
'cython',
'seaborn',
'scipy',
'PyQt5'],
cmdclass={'build_ext': build_ext},
ext_modules=cythonize(extensions),
package_data={'PyContact': ['exampleData/defaultsession',
'exampleData/*.psf', 'exampleData/*.pdb',
'exampleData/*.dcd', 'exampleData/*.tpr',
'exampleData/*.xtc', 'gui/*.tcl',
'db/aa.db', 'cy_modules/*.pyx',
'cy_modules/src/*']},
entry_points={
'console_scripts': [
'pycontact=PyContact.pycontact:main',
],
},
)