-
Notifications
You must be signed in to change notification settings - Fork 2
Modernize install #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6eb9a52
MNT: Modernize install.
fernandohds564 c286b38
MNT: update minimal setuptools version to 44.
fernandohds564 0237adc
MNT: update Ubuntu version in github worflow, since 20.04 is not supp…
fernandohds564 0efe728
Update pyproject.toml
fernandohds564 afabfea
Update python_package/pyproject.toml
fernandohds564 90b2899
Merge branch 'master' into dev/maint/modernize-install
fernandohds564 3a6be39
MNT: make sure symbolic links are relative paths.
fernandohds564 ff323db
Merge branch 'master' into dev/maint/modernize-install
anacso17 57233f8
Update version to 4.10.8
anacso17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| ../LICENSE |
This file contains hidden or 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 @@ | ||
| ../README.md |
This file contains hidden or 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,73 @@ | ||
| [build-system] | ||
| requires = ["setuptools>=44"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "trackcpp" | ||
| authors = [ { name = "lnls-fac" }, ] | ||
| maintainers = [ | ||
| {name = "Ana Oliveira", email = "ana.clara@lnls.br"}, | ||
| {name = "Ximenes Resende", email = "xresende@gmail.com"}, | ||
| {name = "Fernando H. de Sá", email = "fernandohds564@gmail.com"}, | ||
| {name = "Murilo Barbosa Alves", email= "alvesb.murilo@gmail.com"} | ||
| ] | ||
| description = "trackcpp python package" | ||
| readme = "README.md" | ||
| dynamic = ["version", "dependencies"] | ||
| requires-python = ">=3.6" | ||
| classifiers = [ | ||
| "Intended Audience :: Science/Research", | ||
| "Programming Language :: Python", | ||
| "Topic :: Scientific/Engineering", | ||
| ] | ||
| license = "MIT" | ||
| license-files= [ "LICENSE", ] | ||
|
|
||
| [project.urls] | ||
| Homepage = "https://github.com/lnls-fac/trackcpp" | ||
| Download = "https://github.com/lnls-fac/trackcpp" | ||
| Repository = "https://github.com/lnls-fac/trackcpp.git" | ||
| Issues = "https://github.com/lnls-fac/trackcpp/issues" | ||
|
|
||
| # --- Configurações específicas do Setuptools --- | ||
| [tool.setuptools] | ||
| include-package-data = true | ||
|
|
||
| [tool.setuptools.dynamic] | ||
| version = { file = "VERSION" } | ||
| dependencies = { file = "requirements.txt" } | ||
|
|
||
| [tool.setuptools.package-data] | ||
| trackcpp = ["VERSION", "_trackcpp.so"] | ||
|
|
||
| # --- linter and formatter configurations --- | ||
| [tool.ruff] | ||
| select = [ | ||
| "W", "E", "A", "B", "C90", "D", "I002", "N", "F", "G", "ARG", "S", "NPY"] | ||
| ignore = [ | ||
| "D203", "D204", "D213", "D215", "D400", "D401", "D404", "D406", "D407", | ||
| "D408", "D409", "D413", "E203", "E226"] | ||
| ignore-init-module-imports = true | ||
| preview = true | ||
| line-length = 79 | ||
| fix = true | ||
|
|
||
| [tool.ruff.extend-per-file-ignores] | ||
| "__init__.py" = ["F401", "F821"] | ||
|
|
||
| [tool.ruff.format] | ||
| skip-magic-trailing-comma = true | ||
|
|
||
| [tool.ruff.lint.isort] | ||
| split-on-trailing-comma = false | ||
| combine-as-imports = true | ||
|
|
||
| [tool.isort] | ||
| split_on_trailing_comma = false | ||
| combine_as_imports = true | ||
| combine_star = true | ||
| multi_line_output = "HANGING_INDENT" | ||
| order_by_type = false | ||
|
|
||
| [tool.black] | ||
| line-length = 79 |
This file contains hidden or 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 @@ | ||
| numpy>=1.8 | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| 4.10.7 | ||
| 4.10.8 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.