-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (32 loc) · 1.43 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
# Written by Peyton Murray
# @peytondmurray
# peytondmurray.github.io
from setuptools import setup
setup(
name='mx3tools',
packages=['mx3tools'], # this must be the same as the name above
version='0.5',
description='Tools for running and processing micromagnetics simulations using Mumax3',
author='Peyton Murray',
author_email='[email protected]',
url='https://github.com/peytondmurray/mx3tools',
# use the URL to the github repo
license="MIT",
download_url='https://github.com/peytondmurray/mx3tools/archive/v0.5.zip',
keywords=['mumax3', 'ovf', 'micromagnetics', 'simulation'],
# arbitrary keywords
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Visualization',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
install_requires=["matplotlib", "numpy", "ipywidgets", "ipython", "pandas", "tqdm", "opencv-python", "astropy"],
python_requires='>=3',
)