SharadKumar97 / OSINT-SPY

Performs OSINT scan on email/domain/ip_address/organization using OSINT-SPY. It can be used by Data Miners, Infosec Researchers, Penetration Testers and cyber crime investigator in order to find deep information about their target. If you want to ask something please feel free to reach out to me at robotcoder@protonmail.com
https://docs.osint-spy.io
GNU General Public License v3.0
1.15k stars 182 forks source link

Collect install files into single setup.py file #7

Closed mmangione closed 4 years ago

mmangione commented 6 years ago

I attended your talk at CactusCon. Great job.

Why not use a setup.py file so that the install process can be OS ambivalent?

SharadKumar97 commented 6 years ago

Yes Sure. I will. Thanks

moyamanuel commented 6 years ago

You can use the platform module from Python if you wish to merge the two setup files together.

import platform
....

if (platform.system() != "Windows"):
    # Do this for *Nix
else:
   # Do this for Windows.
SharadKumar97 commented 4 years ago

The codebase has been updated, please do a git pull.