leylines/leylines-bootstrap/setup.py

21 lines
486 B
Python
Raw Permalink Normal View History

2021-06-14 09:38:51 +00:00
from setuptools import setup
setup(name='leylines-bootstrap',
version='0.1',
description='Sample text',
url='https://awoo.systems',
author='haskal',
author_email='haskal@awoo.systems',
license='AGPLv3',
packages=['leylines-bootstrap'],
install_requires=[
# requirements
],
include_package_data=True,
entry_points={
'console_scripts': [
# bins
]
},
zip_safe=True)