This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
51 lines (45 loc) · 1.46 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron_continuum',
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_continuum',
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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
keywords='pyiron',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
'matplotlib==3.9.2',
'numpy==1.26.4',
'pyiron_base==0.9.12',
'pyiron_snippets==0.1.4',
'scipy==1.14.1',
'sympy==1.13.2'
],
extras_require={
'fenics': [
'fenics==2019.1.0',
'mshr==2019.1.0',
],
'schroedinger': ['k3d==2.16.1']
},
cmdclass=versioneer.get_cmdclass(),
)