2019-01-28 22:23:35 -08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2019-06-06 08:51:07 -07:00
|
|
|
__version__ = "0.0.1"
|
2019-06-11 21:10:10 -07:00
|
|
|
# with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
|
|
|
|
# __requirements__ = [line.strip() for line in f.readlines()]
|
2019-01-28 22:23:35 -08:00
|
|
|
|
|
|
|
|
|
|
|
setup(name='wastebin',
|
|
|
|
version=__version__,
|
|
|
|
description='lazy pastebin',
|
|
|
|
url='',
|
|
|
|
author='dpedu',
|
|
|
|
author_email='dave@davepedu.com',
|
|
|
|
packages=['wastebin'],
|
2019-06-11 21:10:10 -07:00
|
|
|
# install_requires=__requirements__,
|
2019-01-28 22:23:35 -08:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2019-01-29 16:07:14 -08:00
|
|
|
"wastebind = wastebin.daemon:main",
|
|
|
|
"wpaste = wastebin.cli:main"
|
2019-01-28 22:23:35 -08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
zip_safe=False)
|