mirror of
https://github.com/mandiant/dncil
synced 2026-06-08 15:41:41 +00:00
e195dd0b88
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.2 to 8.3.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.2...8.3.3) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
# Copyright (C) 2022 Mandiant, Inc. All Rights Reserved.
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at: [package root]/LICENSE.txt
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and limitations under the License.
|
|
|
|
import os
|
|
|
|
import setuptools
|
|
|
|
requirements = []
|
|
|
|
# this sets __version__
|
|
# via: http://stackoverflow.com/a/7071358/87207
|
|
# and: http://stackoverflow.com/a/2073599/87207
|
|
with open(os.path.join("dncil", "version.py"), "r") as f:
|
|
exec(f.read())
|
|
|
|
|
|
# via: https://packaging.python.org/guides/making-a-pypi-friendly-readme/
|
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(this_directory, "README.md"), "r") as f:
|
|
long_description = f.read()
|
|
|
|
|
|
setuptools.setup(
|
|
name="dncil",
|
|
version=__version__,
|
|
description="The FLARE team's open-source library to disassemble Common Intermediate Language (CIL) instructions.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="Mike Hunhoff",
|
|
author_email="michael.hunhoff@mandiant.com",
|
|
url="https://www.github.com/mandiant/dncil",
|
|
packages=setuptools.find_packages(exclude=["tests", "scripts"]),
|
|
package_dir={"dncil": "dncil"},
|
|
install_requires=requirements,
|
|
extras_require={
|
|
"dev": [
|
|
"pytest==8.3.3",
|
|
"pytest-sugar==1.0.0",
|
|
"pytest-instafail==0.5.0",
|
|
"pytest-cov==5.0.0",
|
|
"pycodestyle==2.12.1",
|
|
"black==24.8.0",
|
|
"isort==5.13.2",
|
|
"mypy==1.11.2",
|
|
"dnfile==0.15.0",
|
|
"hexdump==3.3.0",
|
|
],
|
|
},
|
|
zip_safe=False,
|
|
keywords=".net dotnet cil il disassembly FLARE",
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Information Technology",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Security",
|
|
],
|
|
python_requires=">=3.8",
|
|
)
|