-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.05 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='wmaee',
version='2.3',
description='A collection of evaluation scripts for MUL-CMS group',
author='David Holec',
author_email='david.holec@unileoben.ac.at',
license='MIT',
packages=find_packages('.', exclude=['tests', 'recipies']),
include_package_data=True,
install_requires=[
'numpy',
'ase',
'matplotlib',
'scipy'
],
extras_require={
'pyiron': [
'pyiron_atomistics',
'pyiron_base'
],
'atomistics': [
'lammps',
'kimpy',
'kim-query'
],
'dft': [
'gpaw'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
long_description=(
'Some parts of this package may require external software '
'such as VASP or LAMMPS for full functionality.'
),
)