|  | 
| 1 | 1 | #!/usr/bin/env python | 
| 2 | 2 | 
 | 
| 3 |  | -from setuptools import setup, find_packages, Command, Extension | 
|  | 3 | +from setuptools import setup, Command, Extension | 
| 4 | 4 | from wheel.bdist_wheel import bdist_wheel | 
| 5 | 5 | 
 | 
| 6 | 6 | 
 | 
| @@ -50,31 +50,7 @@ def finalize_options(self): | 
| 50 | 50 |         self.root_is_pure = True | 
| 51 | 51 | 
 | 
| 52 | 52 | 
 | 
| 53 |  | -with open("README.md", "r") as f: | 
| 54 |  | -    long_description = f.read() | 
| 55 |  | - | 
| 56 | 53 | setup( | 
| 57 |  | -    name="clr_loader", | 
| 58 |  | -    version="0.1.7", | 
| 59 |  | -    description="Generic pure Python loader for .NET runtimes", | 
| 60 |  | -    author="Benedikt Reinartz", | 
| 61 |  | - | 
| 62 |  | -    long_description=long_description, | 
| 63 |  | -    long_description_content_type="text/markdown", | 
| 64 |  | -    license="MIT", | 
| 65 |  | -    python_requires=">=3.6", | 
| 66 |  | -    install_requires=["cffi>=1.13"], | 
| 67 |  | -    classifiers=[ | 
| 68 |  | -        "Development Status :: 2 - Pre-Alpha", | 
| 69 |  | -        "Intended Audience :: Developers", | 
| 70 |  | -        "License :: OSI Approved :: MIT License", | 
| 71 |  | -        "Programming Language :: Python :: 3", | 
| 72 |  | -        "Operating System :: Microsoft :: Windows", | 
| 73 |  | -        "Operating System :: POSIX :: Linux", | 
| 74 |  | -        "Operating System :: MacOS :: MacOS X", | 
| 75 |  | -    ], | 
| 76 |  | -    package_data={"clr_loader.ffi": ["dlls/x86/*.dll", "dlls/amd64/*.dll"]}, | 
| 77 |  | -    packages=find_packages(), | 
| 78 | 54 |     cmdclass={"build_ext": BuildDotnet, "bdist_wheel": bdist_wheel_patched}, | 
| 79 | 55 |     ext_modules={ | 
| 80 | 56 |         DotnetLib( | 
|  | 
0 commit comments