Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
unb-uuiduser / setup.py
Size: Mime:
from setuptools import setup


if __name__ == '__main__':
  setup(
    name='unb-uuiduser',
    version='0.0.5',
    description='Django UUID-based User model.',
    author='Nick Zarczynski',
    author_email='nick@unb.services',
    packages=[
      'uuiduser',
    ],
    include_package_data=True,
    install_requires=[],
    license="MIT",
    url='https://bitbucket.org/unbsolutions/unb-uuiduser',
    classifiers=[
      'Development Status :: 2 - Pre-Alpha',
      'Intended Audience :: Developers',
      'Environment :: Web Environment',
      'Framework :: Django :: 1.8',
      'License :: OSI Approved :: MIT License',
      'Operating System :: OS Independent',
      'Programming Language :: Python :: 2.7',
    ],
  )