-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.57 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
import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='theme',
version='0.1',
packages=['theme'],
package_data={'theme': [
'templates/*.html',
'templates/example/*.html',
'static/theme/styles/*.*',
'static/theme/styles/abstracts/*.*',
'static/theme/styles/base/*.*',
'static/theme/styles/components/*.*',
'static/theme/styles/layout/*.*',
'static/theme/styles/pages/*.*',
'static/theme/styles/postcss/*.*',
'static/theme/styles/themes/*.*',
'static/theme/styles/vendor/*.*',
'static/theme/styles/vendor/fonts/*.*',
'static/theme/css/*.*',
'static/theme/img/*.*',
'static/theme/js/*.*',
'static/theme/js/min/*.*',
]},
include_package_data=True,
license='BSD License',
description="A modern CSS starter kit based on Flexbox",
url='https://github.com/wharton/django-flexbox-theme',
author='Chad Whitman - App Developer, 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',
],
)