mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Taken from http://code.google.com/p/django-confirmation/. Code is under the BSD 3-clause license. (imported from commit cfb5a511097fe14fba7f1bcea62dfa25cfb58622)
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
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',
 | 
						|
    ],
 | 
						|
)
 | 
						|
 |