forked from freegs-plasma/freegs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (31 loc) · 1.13 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
38
39
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
import freegs
setup(
name="FreeGS",
version=freegs.__version__,
packages=["freegs"],
license="LGPL",
author="Ben Dudson",
author_email='[email protected]',
url="https://github.com/bendudson/freegs",
description="Free boundary Grad-Shafranov solver for tokamak plasma equilibria",
long_description=read("README.md"),
install_requires=['numpy>=1.8',
'scipy>=0.14',
'matplotlib>=1.3'],
platforms='any',
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Physics'
],
)