-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
61 lines (59 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='base_theme',
version='1.0',
packages=['base_theme'],
package_data={'base_theme': [
'templates/*.html',
'templates/your_app/*.html',
'static/base_theme/bootstrap_css/*.css',
'static/base_theme/fonts/*.*',
'static/base_theme/fonts/fa/*.*',
'static/base_theme/fonts/*.min.*',
'static/base_theme/fonts/bask/*.*',
'static/base_theme/fonts/lato/*.*',
'static/base_theme/fonts/lus/*.*',
'static/base_theme/fonts/mont/*.*',
'static/base_theme/img/bg/*.*',
'static/base_theme/img/footer/*.png',
'static/base_theme/img/logo/*.png',
'static/base_theme/img/social/*.png',
'static/base_theme/js/*.js',
'static/base_theme/js/vendor/*.js',
'static/base_theme/scss/compiled_css/*.css',
'static/base_theme/scss/scss/*.scss',
'static/base_theme/scss/scss/base/*.scss',
'static/base_theme/scss/scss/modules/*.scss',
'static/base_theme/scss/scss/modules/navigation/*.scss',
'static/base_theme/scss/scss/helpers/*.scss',
'static/base_theme/scss/scss/helpers/fonts/*.scss',
'static/base_theme/scss/scss/layout/*.scss',
'static/base_theme/scss/scss/state/*.scss',
'static/base_theme/*.*',
'static/base_theme/scss/config.rb',
]},
include_package_data=True,
install_requires=[
'django-fontawesome==0.2.2',
'django-bootstrap3',
],
license='BSD License',
description="A responsive front-end boilerplate designed for Wharton Django/Python apps.",
url='https://github.com/wharton/django-base-theme/',
author='Chad Whitman, the Wharton School',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)