Update installations and workflows
* Update pyproject.toml * Create a Workflow file to test formatting in PR
This commit is contained in:
committed by
Nicola Demo
parent
ed0a8bd5e7
commit
4c4482b155
19
.github/workflows/black-formatter-test.yml
vendored
Normal file
19
.github/workflows/black-formatter-test.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Black Formatter (PR Check)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "**" # Run on pull requests for all branches
|
||||
|
||||
jobs:
|
||||
linter:
|
||||
name: runner / black
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Run Black formatter (check mode)
|
||||
uses: psf/black@stable
|
||||
with:
|
||||
options: "--check -l 80"
|
||||
src: "./pina"
|
||||
@@ -1,7 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["setuptools", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "pina-mathlab"
|
||||
version = "0.2.0"
|
||||
@@ -18,21 +14,44 @@ keywords = [
|
||||
"neural-operators", "equation-learning", "lightining"
|
||||
]
|
||||
dependencies = [
|
||||
"torch", "lightning", "torch_geometric", "matplotlib",
|
||||
"torch",
|
||||
"lightning",
|
||||
"torch_geometric",
|
||||
"matplotlib",
|
||||
]
|
||||
requires-python = ">=3.8"
|
||||
|
||||
[project.optional-dependencies]
|
||||
docs = [
|
||||
"sphinx>5.0", "sphinx_rtd_theme", "sphinx_copybutton", "sphinx_design", "pydata_sphinx_theme"
|
||||
"sphinx>5.0",
|
||||
"sphinx_rtd_theme",
|
||||
"sphinx_copybutton",
|
||||
"sphinx_design",
|
||||
"pydata_sphinx_theme"
|
||||
]
|
||||
test = [
|
||||
"pytest", "pytest-cov", "scipy"
|
||||
"pytest",
|
||||
"pytest-cov",
|
||||
"scipy"
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://mathlab.github.io/PINA/"
|
||||
Repository = "https://github.com/mathLab/PINA"
|
||||
|
||||
[tool.setuptools.packages]
|
||||
find = {}
|
||||
[build-system]
|
||||
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning>=2.0,<3", ]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools-git-versioning]
|
||||
enabled = true
|
||||
template = "{tag}"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["pina*"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 80
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
Reference in New Issue
Block a user