forked from ashok-raavi/django-subdomain
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (29 loc) · 1.19 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
import os
from setuptools import setup, find_packages
setup(
name='django-subdomains',
description='app to provide subdomain functionality in django project',
keywords='django, subdomains',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
version="1.1",
author="Agiliq Solutions",
author_email="[email protected]",
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url="http://www.agiliq.com/",
license="BSD",
platforms=["all"],
)