-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (40 loc) · 1.41 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pyiron_gui',
version=versioneer.get_version(),
description='Repository for GUI plugins to the pyiron IDE.',
long_description='http://pyiron.org',
url='https://github.com/pyiron/pyiron_gui',
author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department',
author_email='siemer@mpie.de',
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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=[
'pyiron_base==0.10.10',
'pyiron_atomistics==0.6.19',
'ipywidgets==8.1.5',
'matplotlib==3.10.0',
'nbconvert==7.16.5',
'nbformat==5.10.4',
'numpy==1.26.4',
'pandas==2.2.3',
],
cmdclass=versioneer.get_cmdclass(),
)