-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (34 loc) · 1.26 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
import os
from skbuild import setup
# Read version from file, same as in CMakeLists.txt
with open(os.path.join(os.getcwd(), "version.txt")) as f:
version = f.read()
setup(
name="findent",
version=version,
description="findent: powerful Fortran formatter",
python_requires=">=3.7",
long_description=open(os.path.join(os.getcwd(), "doc/README.md")).read(),
long_description_content_type="text/markdown",
author="Willem Vermin",
# author_email="wvermin@gmail.com",
maintainer="Giannis Nikiteas",
keywords="fortran, formatter, format converter, dependency generator",
url="https://github.com/wvermin/findent",
license="BSD License 2.0",
platforms="Posix, Windows",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Fortran",
"Programming Language :: C++",
"Topic :: Software Development",
"Topic :: Text Processing",
],
cmake_args=("-G", "Unix Makefiles"),
)