forked from jkitchin/jasp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 974 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
setup(name = 'jasp',
version='0.9',
description='extensions to ase.calculators.vasp',
url='http://github.com/jkitchin/jasp',
author='John Kitchin',
author_email='[email protected]',
license='GPL',
platforms=['linux'],
packages=['jasp'],
scripts=['jasp/bin/runjasp.py','jasp/bin/jaspsum'],
test_suite = 'nose.collector',
long_description='''extensions to ase.calculators.vasp. jasp uses modern python patterns and tools.''',
#dependency_links = ['https://wiki.fysik.dtu.dk/ase-files/python-ase-3.7.1.3184.tar.gz#egg=ase'],
install_requires=[
'nose',
"numpy",
"matplotlib",
"scipy",
#"svn+https://svn.fysik.dtu.dk/projects/ase/trunk", # ase
#"webob",
#"Django",
#"pyxser", # https://github.com/dmw/pyxser
#"apsw" #http://code.google.com/p/apsw/
],)