Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
[build-system]
requires = ["setuptools>=44"]
build-backend = "setuptools.build_meta"

[project]
name = "idanalysis"
authors = [{ name = "lnls-fac" } ]
maintainers = [
{name = "Gabriel Rezende de Ascenção", email = "gabriel.ascencao@lnls.br"},
]
description = "ID Analysis Package"
readme = "README.md"
dynamic = ["version", "dependencies"]
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
keywords = ["SIRIUS", "python", "Accelerator Physics", "Insertion Devices"]

license = "GPL-3.0"
license-files= [ "LICENSE", ]

[project.urls]
Homepage = "https://github.com/lnls-fac/idanalysis"
Download = "https://github.com/lnls-fac/idanalysis"
Repository = "https://github.com/lnls-fac/idanalysis.git"
Issues = "https://github.com/lnls-fac/idanalysis/issues"

# --- Setuptools specific configurations ---
[tool.setuptools]
include-package-data = true

[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }

[tool.setuptools.package-data]
idanalysis = ["VERSION"]

# --- 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
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
numpy>=1.8
scipy>=1.3
mathphys>=0.7
matplotlib>=1.4
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/usr/bin/env python-sirius

import pkg_resources
import pathlib

from setuptools import find_packages, setup


def get_abs_path(relative):
return pkg_resources.resource_filename(__name__, relative)
"""."""
return str(pathlib.Path(__file__).parent / relative)


with open(get_abs_path("README.md"), "r") as _f:
Expand All @@ -16,9 +18,8 @@ def get_abs_path(relative):
__version__ = _f.read().strip()


_requirements = ['', ]
#with open(get_abs_path("requirements.txt"), "r") as _f:
# _requirements = _f.read().strip().split("\n")
with open(get_abs_path("requirements.txt"), "r") as _f:
_requirements = _f.read().strip().split("\n")


setup(
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.