23 lines
603 B
Python
23 lines
603 B
Python
from setuptools import setup
|
|
|
|
setup(name='piratebox',
|
|
version='1.1.4-mod-haskal',
|
|
description='PirateBox - Share Freely',
|
|
url='https://example.com',
|
|
author='haskal',
|
|
author_email='haskal@bepis.xyz',
|
|
license='GPL3',
|
|
packages=['piratebox'],
|
|
install_requires=[
|
|
'aiohttp',
|
|
'aiofiles'
|
|
],
|
|
package_data={'': ['autoindex_header.html', 'autoindex_footer.html']},
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
"piratebox=piratebox:main"
|
|
]
|
|
},
|
|
zip_safe=False)
|