mirror of https://github.com/zulip/zulip.git
Remove confirmation/setup.py
This is just for install. The less code we have in our repo, the better. (imported from commit d1da643d0a68ed73a1d2303e9f24215f7d2a24a7)
This commit is contained in:
parent
b3cf1a5ffb
commit
a1b72f9d05
|
@ -1,35 +0,0 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
# Dynamically calculate the version based on confirmation.VERSION.
|
||||
version_tuple = __import__('confirmation').VERSION
|
||||
if version_tuple[2] is not None:
|
||||
version = "%d.%d_%s" % version_tuple
|
||||
else:
|
||||
version = "%d.%d" % version_tuple[:2]
|
||||
|
||||
|
||||
setup(
|
||||
name = 'django-confirmation',
|
||||
version = version,
|
||||
description = 'Generic object confirmation for Django',
|
||||
author = 'Jarek Zgoda',
|
||||
author_email = 'jarek.zgoda@gmail.com',
|
||||
url = 'http://code.google.com/p/django-confirmation/',
|
||||
license = 'New BSD License',
|
||||
packages = find_packages(),
|
||||
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',
|
||||
'Topic :: Utilities',
|
||||
],
|
||||
zip_safe = False,
|
||||
install_requires = [
|
||||
'django>=1.0',
|
||||
],
|
||||
)
|
||||
|
Loading…
Reference in New Issue