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)