-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
44 lines (39 loc) · 1.46 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
40
41
42
43
44
#------------------------------------------------------------------------------
# Copyright (c) 2010, Kurt W. Smith
# All rights reserved. See LICENSE.txt.
#------------------------------------------------------------------------------
import os
from distutils.core import setup
scripts = []
scripts = ['fwrapc.py', 'fwrapper.py']
from fwrap.version import get_version
setup(name="fwrap",
version=get_version(),
description="Tool to wrap Fortran 77/90/95 code in C, Cython & Python.",
author="Kurt W. Smith & contributors",
author_email="[email protected]",
url="http://fwrap.sourceforge.net/",
packages=[
"fwrap",
"fwrap.fparser"
],
package_data = {
"fwrap" : ["default.config", "log.config"],
"fwrap.fparser" : ["log.config"],
},
scripts=scripts,
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Fortran",
"Programming Language :: C",
"Programming Language :: Cython",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)