Skip to content
Open
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
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ recursive-include scripts *
recursive-include po *.po *.pot Makefile
recursive-include initial_setup *.py *.glade
recursive-exclude modules *.pyc *.pyo
include data/10-initial-setup.conf
include pam/initial-setup
3 changes: 3 additions & 0 deletions initial-setup.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Enable X11 for RHEL 9 and older only
%bcond x11 %[0%{?rhel} && 0%{?rhel} < 10]
%bcond glade %[%{undefined rhel} && %{undefined eln}]

Name: initial-setup
Summary: Initial system configuration utility
Expand All @@ -23,7 +24,9 @@ BuildRequires: gettext
BuildRequires: python3-devel
BuildRequires: systemd-units
BuildRequires: gtk3-devel
%if %{with glade}
BuildRequires: glade-devel
%endif
BuildRequires: intltool
BuildRequires: make

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -29,7 +29,7 @@ Repository = "https://github.com/rhinstaller/initial-setup"
issues = "https://github.com/rhinstaller/initial-setup/issues"

[tool.setuptools.packages.find]
exclude = ["po*", "scripts*", "systemd*", "tests*"]
exclude = ["po*", "scripts*", "systemd*", "tests*", "data*", "pam*"]

[tool.setuptools.package-data]
"*" = ["*.glade"]
Expand Down