-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (48 loc) · 1.73 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='ironflow',
version=versioneer.get_version(),
description='ironflow - A visual scripting interface for pyiron.',
long_description='Ironflow combines ryven, ipycanvas and ipywidgets to provide a Jupyter-based visual scripting '
'gui for running pyiron workflow graphs.',
url='https://github.com/pyiron/ironflow',
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=[
'aimsgb ==0.1.3',
'ipycanvas ==0.13.2',
'ipython ==8.24.0',
'ipywidgets ==7.7.1',
'jupyterlab ==3.6.7',
'matplotlib ==3.8.4',
'nglview ==3.0.8',
'numpy ==1.26.4',
'owlready2 ==0.46',
'pandas ==1.5.3',
'pyiron_atomistics == 0.2.63',
'pyiron_base ==0.5.33',
'pyiron_gui <=0.0.8',
'pyiron_ontology ==0.1.3',
'pymatgen ==2023.5.10',
'ryvencore ==0.3.1.1',
'seaborn ==0.13.2',
'traitlets ==5.14.3',
],
cmdclass=versioneer.get_cmdclass(),
)