forked from ebertti/django-registration-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (37 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import registration_bootstrap3 as app
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = app.__version__
readme = open('README.rst').read()
setup(
name='django-registration-bootstrap3',
version=version,
description="""Custom HTML template for django-registration app made using Bootstrap from Twitter""",
long_description=readme,
author=u'Ezequiel Bertti',
author_email='[email protected]',
url='https://github.com/ebertti/django-registration-bootstrap',
packages=[
'registration_bootstrap3',
],
include_package_data=True,
license="BSD",
zip_safe=False,
keywords='django registration bootstrap auth users',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)