14 lines
375 B
Python
14 lines
375 B
Python
from setuptools import setup, find_packages
|
|
from bootstrapform.meta import VERSION
|
|
|
|
|
|
setup(name='django-bootstrap-form',
|
|
author='Matt Austin', author_email='mail@mattaustin.me.uk',
|
|
url='https://github.com/MattAustin/django-bootstrap-form',
|
|
version=str(VERSION),
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=['django'],
|
|
)
|
|
|