1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
"""passlib setup script"""
#=========================================================
#init script env
#=========================================================
import os
os.chdir(os.path.abspath(os.path.join(__file__,"..")))
#=========================================================
#imports
#=========================================================
from setuptools import setup, find_packages
from passlib import __version__ as version
#=========================================================
#setup
#=========================================================
setup(
#package info
packages = find_packages(),
# metadata
name = "passlib",
version = version,
author = "Eli Collins",
author_email = "elic@astllc.org",
description = "utilities for password generation & hashing",
license = "BSD",
keywords = "password hash generation secret security sha md5 bcrypt crypt",
url = "http://www.astllc.org/software/passlib",
# could also include long_description, download_url, classifiers, etc.
zip_safe=True,
)
#=========================================================
#EOF
#=========================================================
|