Sublist3r icon indicating copy to clipboard operation
Sublist3r copied to clipboard

Feature/pypi

Open tannart opened this issue 4 years ago • 4 comments

I've updated the license name as the existing one was being automatically rejected by pypi, the license referenced of course remains unchanged.

tannart avatar Oct 21 '20 18:10 tannart

Could you squash those two commits into one?

jayvdb avatar Oct 22 '20 07:10 jayvdb

(actually ignore this, as it would add changes which are not in the pypi release 1.0) Also the following change to setup.py is more clear, and easier to install from the sdist.

-packages=find_packages()+['.'],
+packages=find_packages(),
+py_modules=['sublist3r'],

or even

-packages=find_packages()+['.'],
+packages=['subbrute'],
+py_modules=['sublist3r'],

jayvdb avatar Oct 22 '20 07:10 jayvdb

I've implemented your recommendations, I'm fairly new to both contributing to external packages on github and creating pypi packages so please let me know if I'm doing anything wrong. Thanks!

tannart avatar Oct 22 '20 16:10 tannart

ping @aboul3la

jayvdb avatar Oct 23 '20 15:10 jayvdb