File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2019-2022 Benedikt Reinartz
3+ Copyright (c) 2019-2026 Benedikt Reinartz
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55[project ]
66name = " clr_loader"
77description = " Generic pure Python loader for .NET runtimes"
8- license = { text = " MIT " }
8+ license-files = [ " LICENSE " ]
99requires-python = " >=3.7"
1010
1111readme = " README.md"
@@ -18,7 +18,6 @@ dependencies = [
1818classifiers = [
1919 " Development Status :: 4 - Beta" ,
2020 " Intended Audience :: Developers" ,
21- " License :: OSI Approved :: MIT License" ,
2221 " Programming Language :: Python :: 3" ,
2322 " Operating System :: Microsoft :: Windows" ,
2423 " Operating System :: POSIX :: Linux" ,
@@ -48,7 +47,6 @@ doc = [
4847[tool .setuptools ]
4948zip-safe = false
5049package-data = {"clr_loader.ffi" = [" dlls/x86/*.dll" , " dlls/amd64/*.dll" ]}
51- license-files = []
5250
5351[tool .setuptools .packages .find ]
5452include = [" clr_loader*" ]
Original file line number Diff line number Diff line change 33import distutils
44from distutils .command .build import build as _build
55from setuptools .command .develop import develop as _develop
6- from wheel .bdist_wheel import bdist_wheel as _bdist_wheel
6+ from setuptools . command .bdist_wheel import bdist_wheel as _bdist_wheel
77from setuptools import Distribution
88from setuptools import setup , Command
99
You can’t perform that action at this time.
0 commit comments