-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 733 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pastehunter',
version='1.4.2',
author='@kevthehermit @Plazmaz',
author_email='info@pastehunter.com',
description="Pastehunter",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://pastehunter.com',
license='GNU V3',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
install_requires=[
'yara-python',
'requests',
'elasticsearch',
'splunk-sdk'
],
scripts=['pastehunter-cli'],
package_data={'': ['*.yar', 'README.md, LICENSE']}
)