generated from pyiron/pyiron_module_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (39 loc) · 1.34 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron_workflow',
version=versioneer.get_version(),
description='Graph-and-node based workflow tools.',
long_description='http://pyiron.org',
url='https://github.com/pyiron/pyiron_workflow',
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=[
'bidict==0.22.1',
'cloudpickle==3.0.0',
'graphviz==0.20.1',
'maggma==0.57.4',
'matplotlib==3.8.0',
'numpy==1.26.0',
'pyiron_atomistics==0.3.4',
'pyiron_base==0.6.8',
'toposort==1.10',
'typeguard==4.1.5',
],
cmdclass=versioneer.get_cmdclass(),
)