docker-nodepupper/setup.py

31 lines
902 B
Python
Raw Permalink Normal View History

2018-10-08 22:31:05 -07:00
#!/usr/bin/env python3
from setuptools import setup
2019-01-26 15:42:04 -08:00
import os
2018-10-08 22:31:05 -07:00
2019-06-03 21:19:23 -07:00
__version__ = "0.0.4"
2019-01-26 15:42:04 -08:00
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
2019-04-15 21:37:58 -07:00
__requirements__ = [line.strip() for line in f.readlines() if not line.startswith("-")]
2018-10-08 22:31:05 -07:00
setup(name='nodepupper',
version=__version__,
description='very good boy',
url='',
author='dpedu',
author_email='dave@davepedu.com',
packages=['nodepupper'],
2019-01-26 15:42:04 -08:00
install_requires=__requirements__,
2018-10-08 22:31:05 -07:00
entry_points={
"console_scripts": [
2019-01-26 15:10:57 -08:00
"nodepupperd = nodepupper.daemon:main",
"npcli = nodepupper.cli:main"
2018-10-08 22:31:05 -07:00
]
},
include_package_data=True,
package_data={'nodepupper': ['../templates/*.html',
'../templates/fragments/*.html',
'../styles/dist/*']},
zip_safe=False)