-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
30 lines (28 loc) · 889 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
25
26
27
28
29
30
from setuptools import setup
def get_version(rel_path):
with open(rel_path) as f:
for line in f.read().splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
raise RuntimeError('Unable to find version string')
setup(
name='subzuf',
version=get_version('subzuf.py'),
author='Marcin Ulikowski',
author_email='[email protected]',
description='Smart subdomain fuzzer coupled with DNS response-guided algorithm',
long_description='Project website: https://github.com/elceef/subzuf',
url='https://github.com/elceef/subzuf',
license='ASL 2.0',
py_modules=['subzuf'],
entry_points={
'console_scripts': ['subzuf=subzuf:run']
},
install_requires=[],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)