-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (62 loc) · 2.38 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
62
63
64
65
from distutils.core import setup
setup(
name = "django_shark",
packages = ["shark"],
package_data = {"shark": [
'objects/*.py',
'extensions/*.py',
'migrations/*.py',
'tests/*.py',
'vue/*.py',
'templates/*.html',
'templates/shark/*.html',
'static/shark/css/*.css',
'static/shark/css/rating-themes/*.css',
'static/shark/js/*.js',
'static/shark/fonts/*.eot',
'static/shark/fonts/*.svg',
'static/shark/fonts/*.ttf',
'static/shark/fonts/*.woff',
'static/shark/fonts/*.woff2',
'static/django_markdown/*.*',
'static/django_markdown/sets/markdown/*.*',
'static/django_markdown/sets/markdown/images/*.*',
'static/django_markdown/skins/simple/*.*',
'static/django_markdown/skins/simple/images/*.*',
'templates/django_markdown/*.*',
]},
version = "0.3.388",
description = "Django based bootstrap web framework",
author = "Bart Jellema",
author_email = "[email protected]",
url = "http://getshark.org/",
download_url="https://github.com/Bart-Jellema/shark",
install_requires=[
'Markdown',
'bleach',
'Django',
'django-pluggableappsettings'
],
keywords = ["django", "bootstrap", "framework", "shark", "django_shark"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 1.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
The Shark framework is a framework that allows for creating MVPs super fast. Django is great for creating models and views,
but you still have to write your own html and css. In Shark there's no need for this. You define in your view what you want
to see and it gets rendered using Bootstrap and all html, css and javascript is generated for you.
More info at http://getshark.org/
If you're interested, drop me a line: [email protected]
"""
)