forked from TRACMASS/sphinx-fortran-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (41 loc) · 1.54 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
45
46
47
# -*- coding: utf-8 -*-
# Inits
from distutils.core import setup
# Infos
version = '0.1'
description = 'Fortran language extensions to sphinx'
long_description = "Fortran (90) language domain and auto-documenter for the Sphinx python documenter"
author = 'Actimar / IFREMER'
author_email = '[email protected]'
maintainer = "Actimar / IFREMER"
maintainer_email = "[email protected]"
plateform = 'Linux/UNIX/BSD'
license="CeCiLL"
url="http://www.ifremer.fr/vacumm"
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: CeCiLL",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX",
"Operating System :: UNIX",
"Operating System :: MacOS :: MacOS X",
]
if __name__ == '__main__':
# Lauch setup
setup(name='sphinxfortran',
version = version,
description = description,
long_description = long_description,
author = author,
author_email = author_email,
maintainer = author,
maintainer_email = author_email,
license = license,
url=url,
classifiers = classifiers,
packages = ['sphinxfortran'],
)