forked from pyiron/pyiron
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (51 loc) · 1.86 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron',
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',
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
author_email='[email protected]',
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=[
'ase>=3.20',
'defusedxml>=0.6.0',
'future>=0.18.2',
'h5py>=2.10.0',
'matplotlib>=3.2.0',
'mendeleev>=0.5.2',
'molmod>=1.4.5',
'numpy>=1.18.1',
'pandas>=1.0.1',
'phonopy>=2.4.2',
'pyiron_base>=0.1.32',
'quickff>=2.2.4',
'scipy>=1.4.1',
'seekpath>=1.9.4',
'six>=1.14.0',
'scikit-learn>=0.22',
'spglib>=1.14.1',
'tables>=3.6.1',
'tamkin>=1.2.6',
'yaff>=1.4.2'
],
cmdclass=versioneer.get_cmdclass(),
)