mirror of
https://github.com/pan-unit42/dotnetfile
synced 2026-06-08 16:36:48 +00:00
26 lines
712 B
Python
26 lines
712 B
Python
from setuptools import setup, find_packages
|
|
|
|
from pathlib import Path
|
|
this_directory = Path(__file__).parent
|
|
long_description = (this_directory / "README.md").read_text()
|
|
|
|
setup(
|
|
name='dotnetfile',
|
|
version='0.2.10',
|
|
author='Bob Jung, Yaron Samuel, Dominik Reichel',
|
|
description='Library to parse the CLR header of .NET assemblies',
|
|
packages=find_packages(),
|
|
package_dir={'dotnetfile': 'dotnetfile'},
|
|
install_requires=[
|
|
'pefile',
|
|
'dncil'
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'dotnetfile_dump=tools.dotnetfile_dump:main',
|
|
'dotnetfile_disassemble=tools.dotnetfile_disassemble:main'
|
|
]
|
|
},
|
|
python_requires='>=3.7'
|
|
)
|