-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.16 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
setup(
name='elixir-dns',
version='1.1.0',
description='Elixir is a fast multi-function DNS Enumeration, Subdomain Enumeration and Attack Surface Mapping tool.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/B0lg0r0v/Elixir',
author='B0lg0r0v',
author_email='[email protected]',
maintainer='B0lg0r0v',
license='MIT',
install_requires=[
'beautifulsoup4',
'dnspython',
'requests',
'setuptools'
],
packages=[
'list',
'core'
],
py_modules=['entry'],
package_data={
'list': ['subdomains.txt'],
},
entry_points={
'console_scripts': [
'elixir-dns=entry:main',
],
},
platforms=['Unix'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
)