evbunpack/setup.py
greats3an f6f7d83dbf Version 0.1.0
feat : PE restoration is implemented
feat : added a tree graph for directory listing
misc : improved overall quality
2022-06-24 14:44:29 +08:00

23 lines
No EOL
828 B
Python

import setuptools,evbunpack
with open("README.md", "r",encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="evbunpack",
version=evbunpack.__version__,
author=evbunpack.__author__,
author_email="greats3an@gmail.com",
description="Enigma Virtual Box 解包工具",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greats3an/evbunpack",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],install_requires=[],
entry_points={"console_scripts": ["evbunpack=evbunpack.__main__:__main__"]},
python_requires='>=3.0',
)