Skip to content

Commit

Permalink
made a package for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
tylabs committed Jul 2, 2021
1 parent d3664d0 commit 306c4f9
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Byte-compiled / optimized / DLL files
__pycache__/
src/quicksand_pkg_tylabs.egg-info/
dist/
*.py[cod]
*$py.class

Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="quicksand",
version="2.0.7",
author="Tyler McLellan",
author_email="[email protected]",
description="QuickSand is a module to scan streams inside documents with Yara",
long_description=long_description,
long_description_content_type="text/markdown",
url="https:/tylabs/quicksand",
download_url="https:/tylabs/quicksand/archive/refs/tags/2.0.7.tar.gz",
keywords = ['document', 'malware', 'forensics', 'yara', 'parser'],
project_urls={
"Bug Tracker": "https:/tylabs/quicksand/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=['quicksand'],
python_requires=">=3.6",
install_requires=['pdfreader',
'oletools',
'cryptography',
'zipfile38',
'msoffcrypto-tool',
'olefile',
'yara-python']
)
Empty file added src/quicksand/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 306c4f9

Please sign in to comment.