forked from pyiron/pyiron_atomistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.77 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron-atomistics',
version=versioneer.get_version(),
description='pyiron - an integrated development environment (IDE) for computational materials science.',
long_description='http://pyiron.org',
url='https://github.com/pyiron/pyiron_atomistics',
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
author_email='janssen@mpie.de',
license='BSD',
classifiers=['Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*.devcontainer*", "*notebooks*", "*.ci_support*", "*test_benchmarks*", "*test_integration*", "*.github*"]),
install_requires=[
'aimsgb==0.1.1',
'ase==3.22.1',
'defusedxml==0.7.1',
'h5py==3.7.0',
'matplotlib==3.6.2',
'mendeleev==0.11.0',
'mp-api==0.29.7',
'numpy==1.23.5',
'pandas==1.5.1',
'phonopy==2.15.1',
'pint==0.20.1',
'pyiron_base==0.5.28',
'pymatgen==2022.11.7',
'scipy==1.9.3',
'seekpath==2.0.1',
'scikit-learn==1.1.3',
'spglib==2.0.2',
],
cmdclass=versioneer.get_cmdclass(),
)