-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0c4e45
commit 92ab74b
Showing
6 changed files
with
209 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
max-line-length = 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,7 @@ | |
# Fxtran building | ||
bin/fxtran | ||
site/fxtran | ||
|
||
# Package building | ||
src/pyft.egg-info/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pyft" | ||
authors = [ | ||
{name = "Quentin Rodier", email = "[email protected]"}, | ||
{name = "Sébastien Riette", email = "[email protected]"}, | ||
] | ||
description = "Python-fortran-tool" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
keywords = ["fortran", "static-analysis"] | ||
license = {text = "LICENSE"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: CeCILL-C Free Software License Agreement (CECILL-C)", | ||
"Operating System :: POSIX :: Linux", | ||
] | ||
dependencies = [ | ||
#"fxtran", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/UMR-CNRM/pyft" | ||
Documentation = "https://umr-cnrm.github.io/pyft" | ||
Issues = "https://github.com/UMR-CNRM/pyft/issues" | ||
|
||
[project.scripts] | ||
'pyft_tool.py' = "pyft.scripting:main" | ||
'pyft_parallel_tool.py' = "pyft.scripting:mainParallel" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pyft.__version__"} | ||
|
||
[tool.pylint.BASIC] | ||
function-rgx='_?_?[a-z][A-Za-z0-9]{1,30}$' | ||
method-rgx='_?_?[a-z][A-Za-z0-9]{1,30}_?_?$' | ||
attr-rgx='_?_?[a-z][A-Za-z0-9]{1,30}$' | ||
argument-rgx='_?[a-z][A-Za-z0-9]{1,30}$' | ||
variable-rgx='_?[a-z][A-Za-z0-9]{1,30}$' | ||
inlinevar-rgx='_?[a-z][A-Za-z0-9]{0,30}$' | ||
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
disable='no-member' | ||
|
||
# flake8 doesn't yet support the pyproject.toml file | ||
# The flake8 configuration is deported to the .flake8 file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters