21 lines
486 B
Python
21 lines
486 B
Python
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)
|