You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnionIngestor/setup.py

23 lines
472 B
Python

from setuptools import setup
def readme_file_contents():
with open('README.md') as readme_file:
data = readme_file.read()
return data
setup(
name='OnionIngestor',
version='1.0.0',
description='Python app to scraper and index hidden websites',
long_description=readme_file_contents(),
author='dan',
author_email='test@google.com',
license='MIT',
packages=['onioningestor'],
zip_safe=False,
install_requires=[]
)