-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from ubermag/metadata-update
metadata-update
- Loading branch information
Showing
11 changed files
with
101 additions
and
73 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: conda-environment | ||
|
||
channels: | ||
- conda-forge | ||
|
||
dependencies: | ||
- python==3.8 | ||
- pip | ||
- oommf | ||
- pip: | ||
- git+https://github.com/ubermag/ubermagutil.git | ||
- git+https://github.com/ubermag/ubermagtable.git | ||
- git+https://github.com/ubermag/discretisedfield.git | ||
- git+https://github.com/ubermag/micromagneticmodel.git | ||
- git+https://github.com/ubermag/micromagnetictests.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ build/ | |
dist/ | ||
*.egg-info/ | ||
_autosummary/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[metadata] | ||
name = oommfc | ||
version = 0.10.1 | ||
description = OOMMF calculator. | ||
author = Marijan Beg, Martin Lang, Ryan A. Pepper, Thomas Kluyver, Samuel Holt, Hans Fangohr | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://ubermag.github.io | ||
licence = BSD 3-Clause License | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Education | ||
Intended Audience :: Developers | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Natural Language :: English | ||
Operating System :: MacOS | ||
Operating System :: Microsoft :: Windows | ||
Operating System :: Unix | ||
Programming Language :: Python :: 3 :: Only | ||
Topic :: Scientific/Engineering :: Physics | ||
Topic :: Scientific/Engineering :: Mathematics | ||
Topic :: Scientific/Engineering :: Visualization | ||
|
||
[options] | ||
packages = find: | ||
python_requires >= 3.8 | ||
install_requires = | ||
micromagnetictests==0.3.1 | ||
ubermagtable==0.6.1 | ||
include_package_data = True | ||
|
||
[options.entry_points] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,3 @@ | ||
# This content is needed for editable install via pip. | ||
import setuptools | ||
|
||
with open('README.md', 'r', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setuptools.setup( | ||
name='oommfc', | ||
version='0.10.1', | ||
description='OOMMF calculator.', | ||
author=('Marijan Beg, Martin Lang, Ryan A. Pepper, ' | ||
'Thomas Kluyver, and Hans Fangohr'), | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://ubermag.github.io', | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
python_requires='>=3.8', | ||
install_requires=['micromagnetictests==0.3.1', | ||
'ubermagtable==0.6.1'], | ||
classifiers=['Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Scientific/Engineering :: Physics', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'Topic :: Scientific/Engineering :: Visualization'] | ||
) | ||
setuptools.setup() |