-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathsetup.py
42 lines (34 loc) · 1.28 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = ['cython','requests','beautifulsoup4','PyYaml','lxml','grequests','gevent','twint']
setup(
author="sham00n",
author_email="sham00n@protonmail.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Environment :: Console",
],
description='Buster is an OSINT tool used to generate and verify emails and return information associated with them',
install_requires=requirements,
license="GNU GPLv3 ",
long_description_content_type='text/markdown',
long_description=readme + "\n\n",
include_package_data=True,
keywords="buster",
name="buster",
packages=find_packages(),
entry_points={"console_scripts": ["buster = buster.__main__:start"]},
setup_requires=requirements,
url="https://github.com/sham00n/buster",
version="1.0.0",
zip_safe=False,
package_data={'data': ['email-providers.json','api-keys.yaml','domain_list.json']},
)