Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
copy setup.py from pyiron_module_template
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Aug 22, 2024
1 parent fc033da commit 0fc288c
Showing 1 changed file with 2 additions and 45 deletions.
47 changes: 2 additions & 45 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,51 +1,8 @@
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
from setuptools import setup

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='huber@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.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.1',
'numpy==1.26.4',
'pyiron_base==0.9.12',
'pyiron_snippets==0.1.3',
'scipy==1.14.0',
'sympy==1.13.1'
],
extras_require={
'fenics': [
'fenics==2019.1.0',
'mshr==2019.1.0',
],
'schroedinger': ['k3d==2.16.1']
},
cmdclass=versioneer.get_cmdclass(),

)

0 comments on commit 0fc288c

Please sign in to comment.