-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
51 lines (49 loc) · 1.92 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
#!/usr/bin/env python
#
# Copyright (c), 2015-2022, Quantum Espresso Foundation and SISSA (Scuola
# Internazionale Superiore di Studi Avanzati). All rights reserved.
# This file is distributed under the terms of the MIT License. See the
# file 'LICENSE' in the root directory of the present distribution, or
# http://opensource.org/licenses/MIT.
#
# @author Davide Brunato
#
from setuptools import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='qeschema',
version='1.5.2',
install_requires=['xmlschema>=2.5.1,<4.0.0', 'numpy'],
extras_require={
'HDF5': ['h5py'],
'YAML': ['pyyaml'],
},
packages=['qeschema', 'qeschema.hdf5'],
package_data={'qeschema': ['schemas/*.xsd', 'schemas/releases/*.xsd']},
scripts = ['scripts/xml2qeinput.py', 'scripts/yaml2qeinput.py'],
url='https://github.com/QEF/qeschema',
authors='Davide Brunato,Pietro Delugas,Giovanni Borghi,Alexandr Fonari',
license='MIT',
license_file='LICENSE',
description='Schema-based tools and interfaces for Quantum Espresso data',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
]
)