forked from Becksteinlab/propkatraj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (24 loc) · 879 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
28
29
#! /usr/bin/python
"""Setuptools-based setup script for propkatraj.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
setup(name='propkatraj',
version='0.1.0',
description='obtain pKas for titreatable residues from a simulation trajectory',
author='David Dotson',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
packages=['propkatraj'],
scripts=[],
license='GPLv3',
long_description=open('README.md').read(),
install_requires=['numpy', 'pandas', 'MDAnalysis', 'propka']
)