mirror of
https://github.com/danieleperera/OnionIngestor
synced 2024-10-31 15:20:21 +00:00
23 lines
472 B
Python
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=[]
|
|
)
|
|
|