Skip to content

Commit

Permalink
packaging updates
Browse files Browse the repository at this point in the history
  • Loading branch information
scottprahl committed Jan 22, 2024
1 parent 349c330 commit 43e34d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import os.path

project = 'iadpython'
master_doc = 'index'

def get_init_property(prop):
"""Return property from __init__.py."""
Expand All @@ -31,8 +32,6 @@ def get_init_property(prop):
author = get_init_property("__author__")
copyright = get_init_property("__copyright__")

master_doc = 'index'

# -- General configuration ---------------------------------------------------

# Sphinx extension modules
Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
[build-system]
requires = [
"setuptools >= 44.0.0",
"setuptools_scm >= 2.0.0, <3"
]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.check-manifest]
Expand All @@ -13,3 +10,9 @@ ignore = ["release.txt",
".testignore",
"docs/*",
"tests_iadc/*"]


[tool.ruff]
line-length = 100
ignore = ["F403", "F841"]
exclude =['.git', '__pycache__', 'docs']

0 comments on commit 43e34d3

Please sign in to comment.