-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from mandiant/pypi-prep
updating setup.py for pypi
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,9 +33,9 @@ | |
long_description_content_type="text/markdown", | ||
author="Mike Hunhoff", | ||
author_email="[email protected]", | ||
packages=setuptools.find_packages(exclude=["tests"]), | ||
url="https://www.github.com/mandiant/dncil", | ||
packages=setuptools.find_packages(exclude=["tests", "scripts"]), | ||
package_dir={"dncil": "dncil"}, | ||
include_package_data=True, | ||
install_requires=requirements, | ||
extras_require={ | ||
"dev": [ | ||
|
@@ -52,5 +52,15 @@ | |
], | ||
}, | ||
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.7", | ||
) |