-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 1019 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
24
25
26
from setuptools import setup, find_packages
version = __import__('site_themes').get_version()
setup(
name = "django-site-themes",
version = version,
description = "Ability change django project site theme (templates and static media) on fly without restart server",
keywords="django skin theme dynamic media templates",
author = "Alex Kamedov",
author_email = "[email protected]",
url = "[email protected]:repos/django-skinability.git",
license = "New BSD License",
platforms = ["any"],
classifiers = ["Development Status :: %s" % version,
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)