This repository has been archived by the owner on Dec 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (45 loc) · 1.78 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="django-materialize-css",
version="0.0.1",
packages=find_packages(),
package_data={
'materialize': [
'static/materialize/*.html',
'static/materialize/bin/*.css',
'static/materialize/bin/*.js',
'static/materialize/css/*.css',
'static/materialize/font/material-design-icons/*',
'static/materialize/font/roboto/*',
'static/materialize/images/*.png',
'static/materialize/images/*.jpg',
'static/materialize/images/*.gif',
'static/materialize/jade/*.jade',
'static/materialize/jade/*/*.jade',
'static/materialize/js/*.js',
'static/materialize/js/date_picker/*.js',
'static/materialize/sass/*.sass',
],
},
# metadata for upload to PyPI
author="Emiliano Dalla Verde Marcozzi",
author_email="[email protected]",
description="Provides a Django app whose static folder contains Materialize CSS assets",
license="GPL v3",
keywords="django material design app staticfiles materialize css",
url="https://github.com/edvm/django-materialize-css",
download_url="http://pypi.python.org/pypi/django-materialize-css",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries',
]
)