-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (43 loc) · 1.35 KB
/
setup.py
File metadata and controls
52 lines (43 loc) · 1.35 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
#!/usr/bin/env python
# Copyright (C) 2007 CAMP
# Please see the accompanying LICENSE file for further information.
from distutils.core import setup
from glob import glob
from os.path import join
import os
import sys
long_description = """\
ASE is a python package providing an open source Atomic Simulation
Environment in the python scripting language."""
if sys.version_info < (2, 3, 0, 'final', 0):
raise SystemExit, 'Python 2.3 or later is required!'
packages = ['ase',
'ase.io',
'ase.md',
'ase.dft',
'ase.gui',
'ase.data',
'ase.test',
'ase.utils',
'ase.lattice',
'ase.examples',
'ase.optimize',
'ase.visualize',
'ase.visualize.vtk',
'ase.transport',
'ase.calculators',
'ase.gui.languages',
'ase.calculators.jacapo']
# Get the current version number:
execfile('ase/version.py')
setup(name = 'python-ase',
version=version,
description='Atomic Simulation Environment',
url='https://wiki.fysik.dtu.dk/ase',
maintainer='CAMd',
maintainer_email='camd@fysik.dtu.dk',
license='LGPL',
platforms=['linux'],
packages=packages,
scripts=['tools/ag', 'tools/ASE2ase.py', 'tools/testase.py'],
long_description=long_description)