-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
23 lines (22 loc) · 790 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='django-materialize-forms',
version='0.2.0',
url='https://github.com/zokis/django-materialize-forms',
author='Marcelo Fonseca Tambalo',
author_email='[email protected]',
license='MIT',
packages=['materialize_forms', 'materialize_forms.templatetags'],
include_package_data=True,
description='Materializecss support for Django projects',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
)