-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
40 lines (37 loc) · 978 Bytes
/
setup.cfg
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
34
35
36
37
38
39
40
[metadata]
name=cryptacular
version=1.2
author=Daniel Holth
summary=A password hashing framework with bcrypt and pbkdf2.
description-file=README.txt
home-page=http://bitbucket.org/dholth/cryptacular
classifier=Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: C
Topic :: Security :: Cryptography
[files]
packages = cryptacular
cryptacular.bcrypt
cryptacular.core
cryptacular.crypt
cryptacular.pbkdf2
resources =
entry_points.txt={dist-info}
[extension: cryptacular.bcrypt._bcrypt]
language = cxx
include_dirs = crypt_blowfish-1.2/
sources =
crypt_blowfish-1.2/crypt_blowfish.c
crypt_blowfish-1.2/crypt_gensalt.c
crypt_blowfish-1.2/wrapper.c
cryptacular/bcrypt/_bcrypt.c
define_macros = NO_BF_ASM
[nosetests]
where=cryptacular
cover-package=cryptacular
nocapture=1
with-coverage=1
cover-erase=1
with-doctest=1