-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (27 loc) · 1.16 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
"""Setup script for open_fortran_parser package."""
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = 'open-fortran-parser'
description = 'Python wrapper for XML output generator for Open Fortran Parser'
url = 'https://github.com/mbdevpl/open-fortran-parser-xml'
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Utilities']
keywords = ['abstract syntax tree', 'ast', 'parser', 'xml']
if __name__ == '__main__':
Package.setup()