Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v authored Sep 1, 2021
2 parents c8fb124 + ddb47ac commit 8f83a04
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import io
from os import path
from setuptools import setup, find_packages

pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, 'README.md'), encoding='utf-8') as readme:
desc = readme.read()

setup(
name='uro',
version=__import__('uro').__version__,
description='A python tool to declutter url lists for crawling/pentesting',
long_description=desc,
long_description_content_type='text/markdown',
author='s0md3v',
license='Apache-2.0 License',
url='https://github.com/s0md3v/uro',
download_url='https://github.com/s0md3v/uro/archive/v%s.zip' % __import__(
'uro').__version__,
packages=find_packages(),
classifiers=[
'Topic :: Security',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'uro = uro.uro:main'
]
},
keywords=['declutter', 'crawling', 'pentesting']
)

0 comments on commit 8f83a04

Please sign in to comment.