Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version #190

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 43 additions & 42 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,42 +1,43 @@
"""
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='[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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],

keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=[
'pyiron_base==0.5.28',
'pyiron_atomistics==0.2.59',
'ipywidgets==7.7.1',
'matplotlib==3.6.2',
'numpy==1.23.4',
'pandas==1.5.1',
]
)
"""
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='[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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],

keywords='pyiron',
packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]),
install_requires=[
'pyiron_base==0.5.28',
'pyiron_atomistics==0.2.59',
'ipywidgets==7.7.1',
'matplotlib==3.6.2',
'numpy==1.23.4',
'pandas==1.5.1',
],
cmdclass=versioneer.get_cmdclass(),
)