-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 907 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 907 Bytes
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
#!/usr/bin/env python
import setuptools
VER = "0.0.1"
reqs = ["numpy",
"scipy",
"matplotlib",
"tqdm",
]
setuptools.setup(
name = "meshInterp",
version = VER,
author = "Daniel Douglas",
author_email = "dougl215@slac.stanford.edu",
description = "interpolate fields on an irregular grid",
url = "https://github.com/DanielMDouglas/meshInterp",
packages = setuptools.find_packages(),
install_requires = reqs,
classifiers = ["Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
],
python_requires = ">=3.2",
)