Skip to content
Snippets Groups Projects
Select Git revision
  • a9ad5ff9e6f35a98765c3f87758a2db897416cb1
  • master default protected
  • exponential-backoff-login
  • v1.10.0
  • v1.9.2
  • v1.9.0
  • v1.8.8
  • v1.8.7
  • v1.8.5
  • v1.8.4
  • v1.8.2
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0.1
  • v1.0
  • v0.2.80
  • v0.2.79
23 results

setup.py

Blame
  • Bryan Brancotte's avatar
    Bryan BRANCOTTE authored
    a9ad5ff9
    History
    setup.py 510 B
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    from setuptools import setup
    
    readme = open('README.rst').read()
    
    setup(
        name='django-basetheme-bootstrap',
        version='0.0.0',
        description='Django Basetheme Bootstrap',
        long_description=readme,
        author='Bryan Brancotte',
        author_email='bryan.brancotte@pasteur.fr',
        packages=['basetheme_bootstrap'],
        install_requires=[
            'django',
            'django-crispy-forms'
        ],
        license="BSD",
        test_suite="runtests.run_all_tests",
    )