-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathsetup.py
24 lines (23 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from ez_setup import use_setuptools
use_setuptools() # NOQA
from setuptools import setup, find_packages
from heralding import version as heralding_version
setup(
name='Heralding',
version=heralding_version,
packages=find_packages(exclude=['bin', 'docs', '*.pyc']),
scripts=['bin/heralding'],
url='https://github.com/johnnykv/heralding',
license='GPL 3',
author='Johnny Vestergaard',
author_email='[email protected]',
include_package_data=True,
long_description=open('README.rst').read(),
description='Credentials catching honeypot.',
test_suite='nose.collector',
install_requires=open('requirements.txt').read(),
tests_require=open('requirements-test.txt').read(),
package_data={
"heralding": ["heralding.yml", "wordlist.txt"],
},
)