-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
65 lines (60 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron_contrib',
version=versioneer.get_version(),
description='Repository for user-generated plugins to the pyiron IDE.',
long_description='http://pyiron.org',
url='https://github.com/pyiron/pyiron_contrib',
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='pyiron',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
'matplotlib==3.9.2',
'numpy==1.26.4',
'pyiron_snippets==0.1.3',
'pyiron_base==0.10.9',
'scipy==1.14.1',
'seaborn==0.13.2',
'pyparsing==3.1.4',
],
extras_require={
'atomistic': [
'ase==3.23.0',
'pyiron_atomistics==0.6.18',
'pycp2k==0.2.2',
],
'fenics': [
'fenics==2019.1.0',
'mshr==2019.1.0',
],
'image': ['scikit-image==0.24.0'],
'generic': [
'boto3==1.35.90',
'moto==5.0.16'
],
'tinybase': [
'distributed==2024.12.1',
'pymatgen==2024.9.17.1',
'pympipool==0.8.4',
'h5io_browser==0.1.4',
]
},
cmdclass=versioneer.get_cmdclass(),
)