forked from vossjo/ase-espresso
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
61 lines (50 loc) · 1.68 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
"""
Setup file for the ase-espresso package.
"""
from setuptools import setup
MAIN_PACKAGE = "aseqe"
DESCRIPTION = "Python API for the Quantum Espresso software"
LICENSE = "GPLv3"
URL = "https://github.com/lmmentel/ase-espresso"
AUTHOR = "Lukasz Mentel"
EMAIL = "lmmentel@gmail.com"
VERSION = '0.3.4'
CLASSIFIERS = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics']
DEPENDENCIES = ['ase',
'future',
'numpy',
'path.py',
'pexpect',
'python-hostlist',
'six']
KEYWORDS = 'chemistry physics quantum mechanics solid state'
def readme():
'Return the contents of the README.md file.'
with open('README.rst') as freadme:
return freadme.read()
def setup_package():
setup(name=MAIN_PACKAGE,
version=VERSION,
url=URL,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
keywords=KEYWORDS,
long_description=readme(),
classifiers=CLASSIFIERS,
packages=['espresso'],
install_requires=DEPENDENCIES,
)
if __name__ == "__main__":
setup_package()