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
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion crossenv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(
host_sysconfigdata_file=None,
manylinux_tags=(),
platform_tags=(),
host_machine=None
host_machine=None,
):
self.host_sysroot = host_sysroot
self.host_cc = None
Expand Down
33 changes: 15 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
[build-system]
requires = ["setuptools==74.1.2"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
dynamic = ["version"]
name = "crossenv"
description = "A cross-compiling tool for Python extension modules"
readme = { file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.5"
requires-python = ">=3.6"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Benjamin Fogle", email = "benfogle@gmail.com" }
]
maintainers = [
{ name = "Benjamin Fogle", email = "benfogle@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
Expand All @@ -26,17 +20,20 @@ dependencies = [
"wheel"
]

[project.urls]
Homepage = "https://github.com/benfogle/crossenv"
[[project.authors]]
name = "Benjamin Fogle"
email = "benfogle@gmail.com"

[tool.setuptools]
packages = ["crossenv"]
[[project.maintainers]]
name = "Dustin Spicuzza"
email = "dustin@virtualroadside.com"

[project.urls]
Homepage = "https://github.com/robotpy/crossenv"

[tool.setuptools.dynamic]
version = { attr = "crossenv.__version__" }
[tool.hatch.version]
path = "crossenv/__init__.py"

[tool.setuptools.package-data]
crossenv = ["scripts/*"]

[tool.black]
include = '''
Expand Down
2 changes: 1 addition & 1 deletion tests/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def make_crossenv(
host_python: Resource,
build_python: Resource,
*args,
**kwargs
**kwargs,
):
cmdline = [build_python.binary, "-m", "crossenv", host_python.binary, crossenv_dir]
cmdline.extend(args)
Expand Down