Ready now
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='django-mfa2',
|
||||
version='0.8',
|
||||
description='Allows user to add 2FA to their accounts',
|
||||
author='Mohamed El-Kalioby',
|
||||
author_email = 'mkalioby@mkalioby.com',
|
||||
url = 'https://github.com/mkalioby/django-mfa2/',
|
||||
|
||||
download_url='https://github.com/mkalioby/django-mfa2/',
|
||||
license='MIT',
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'Django>=1.7',
|
||||
'jsonfield',
|
||||
'simplejson'
|
||||
],
|
||||
include_package_data=True,
|
||||
zip_safe=False, # because we're including static files
|
||||
)
|
||||
Reference in New Issue
Block a user