-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
33 lines (31 loc) · 1.14 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
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = (open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read())
setup(
name='fortran-magic',
version='0.9',
description='An extension for IPython that help to use Fortran in '
'your interactive session.',
long_description=long_description,
long_description_content_type="text/x-rst",
author='Martin Gaitan',
author_email='[email protected]',
url='https://github.com/mgaitan/fortran_magic',
license='BSD',
keywords="ipython notebook fortran f2py science",
py_modules=['fortranmagic'],
install_requires=['ipython', 'numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: IPython',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Fortran',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering'
],
)