forked from ubermag/discretisedfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 902 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="discretisedfield",
version="0.5.4.1",
description=("A Python package for analysing and manipulating "
"discretised fields."),
long_description=readme,
author="Computational Modelling Group",
author_email="fangohr@soton.ac.uk",
url="https://github.com/joommf/discretisedfield",
download_url="https://github.com/joommf/discretisedfield/tarball/0.5.4.1",
packages=["discretisedfield",
"discretisedfield.util",
"discretisedfield.tests"],
install_requires=["joommfutil",
"matplotlib",
"tornado",
"ipython",
"ipykernel"],
classifiers=["License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"]
)