-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 896 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
27
28
29
30
from numpy.distutils.core import Extension, setup
__author__ = "Silvia Amabilino"
__copyright__ = "Copyright 2019"
__credits__ = ["University of Bristol"]
__license__ = "MIT"
__version__ = "0.1"
__maintainer__ = "Silvia Amabilino"
__email__ = "[email protected]"
__status__ = "Beta"
__description__ = "Bubble Charts"
__url__ = "https://github.com/SilviaAmAm/bubbleplot"
FORTRAN = "f90"
ext_foptimise_module = Extension(name = 'foptimise',
sources = ['bubbleplot/foptimise.f90'],
language = FORTRAN,
f2py_options=['--quiet'])
setup(name='bubbleplot',
version=__version__,
description=__description__,
author=__author__,
author_email=__email__,
url=__url__,
packages=['bubbleplot'],
ext_package = 'bubbleplot',
ext_modules=[ext_foptimise_module]
)