-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (25 loc) · 741 Bytes
/
setup.py
File metadata and controls
35 lines (25 loc) · 741 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
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name='osint',
version='0.1',
description='OSINT Tool',
author='Thanat Sirithawornsant',
classifiers=['Development Status :: 1 - Planning',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
platforms=['Any'],
scripts=[],
provides=['osint.plugins.sources',
],
packages=find_packages(),
include_package_data=True,
entry_points={
'osint.plugins.source': [
'google = osint.plugins.google:Google',
'bing = osint.plugins.bing:Bing',
'pipl = osint.plugins.pipl:Pipl'
],
},
zip_safe=False,
)