forked from znotft/ase_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 698 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(name='ase tools',
version='0.2',
description='Tools using the Atomic Simulation Environment.',
author='Jonas Bjork, Matthew Dyer',
author_email='jonbj@ifm.liu.se, msd30@liverpool.ac.uk',
license='GNU GPL',
packages=['ase_tools'],
scripts = ['scripts/chgadd.py',
'scripts/chgdiff.py',
'scripts/curvefit.py',
'scripts/read_write.py',
'scripts/repeat.py',
'scripts/slice.py',
'scripts/splitparchg.py',
'scripts/vtotav.py',
'scripts/write_traj.py',]
)