File: setup.py

package info (click to toggle)
python-zxcvbn 1.0%2Bgit20130503.bc1c2d-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,524 kB
  • ctags: 100
  • sloc: python: 935; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 385 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from distutils.core import setup

setup(name='zxcvbn',
      version='1.0',
      description='Password strength estimator',
      author='Ryan Pearl',
      author_email='rpearl@dropbox.com',
      url='https://www.github.com/rpearl/python-zxcvbn',
      packages=['zxcvbn'],
      package_data={'zxcvbn': ['generated/frequency_lists.json', 'generated/adjacency_graphs.json']}
     )