forked from ecometrica/django-multisite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.51 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
from distutils.core import setup
import os
_dir_ = os.path.dirname(__file__)
def long_description():
"""Returns the value of README.rst"""
with open(os.path.join(_dir_, 'README.rst')) as f:
return f.read()
setup(name='django-multisite',
version='0.3.1',
description='Serve multiple sites from a single Django application',
long_description=long_description(),
author='Leonid S Shestera',
author_email='leonid@shestera.ru',
maintainer='Ecometrica',
maintainer_email='info@ecometrica.com',
url='http://github.com/ecometrica/django-multisite',
packages=['multisite',
'multisite.management',
'multisite.management.commands',
'multisite.migrations'],
install_requires=['Django>=1.3',
'tldextract>=1.1.3'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
)