forked from pyiron/pyiron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.93 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',
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 :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=['ase>=3.16',
'defusedxml',
'dill',
'future',
'h5io>=0.1.1',
'h5py',
'matplotlib',
'numpy',
'pandas',
'pathlib2',
'phonopy',
'psutil',
'pysqa',
'scipy',
'six',
'spglib',
'sqlalchemy',
'tables',
'tqdm'],
cmdclass=versioneer.get_cmdclass(),
)