forked from ubermag/oommfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 835 Bytes
/
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
from setuptools import setup
with open("README.rst") as f:
readme = f.read()
setup(
name="oommfc",
version="0.5.4.2",
description="A Python-based OOMMF calculator.",
long_description=readme,
author="Computational Modelling Group",
author_email="fangohr@soton.ac.uk",
url="https://github.com/joommf/oommfc",
download_url="https://github.com/joommf/oommfc/tarball/0.5.4.2",
packages=["oommfc",
"oommfc.tests",
"oommfc.hamiltonian",
"oommfc.dynamics",
"oommfc.drivers"],
install_requires=["scipy",
"discretisedfield",
"micromagneticmodel",
"oommfodt"],
classifiers=["License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"]
)