forked from uppittu11/fast_wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 843 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
from setuptools import setup, find_packages
import sys
try:
import mdtraj
except ImportError:
print('Building and running analysis requires mdtraj. See '
'http://mdtraj.org/latest/installation.html for help!')
sys.exit(1)
setup(name='fast_wrap',
version='0.1',
description=('A fast script to wrap atoms or molecules into '
'a simulation box using MDTraj as a backend.'),
url='https://github.com/uppittu11/fast_wrap',
author='Parashara Shamaprasad',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_dir={'fast_wrap': 'fast_wrap'},
include_package_data=False,
install_requires=["mdtraj", "numpy"],
entry_points={
"console_scripts" : ["wrap_traj=bin.wrap_traj:wrap_func"],
},
)