-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
26 lines (23 loc) · 1.01 KB
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
LONG_DESCRIPTION = '''A very simple, pure-Python implementation of the scrypt
password-based key derivation function and scrypt file format library with no
dependencies beyond standard Python libraries. See README.md for API
reference and details.'''
setup(name = 'pyscrypt',
version = '1.6.2',
description = 'Pure-Python Implementation of the scrypt password-based key derivation function and scrypt file format library',
long_description = LONG_DESCRIPTION,
author = 'Richard Moore',
author_email = '[email protected]',
url = 'https://github.com/ricmoo/pyscrypt',
packages = ['pyscrypt'],
classifiers = [
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license = "License :: OSI Approved :: MIT License",
)