forked from lightsec/pyNist800-108
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.22 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
27
28
29
30
31
32
33
34
35
36
37
38
'''
Created on Ago 28, 2014
@author: Aitor Gómez Goiri <[email protected]>
To install/reinstall/uninstall the project and its dependencies using pip:
pip install ./
pip install ./ --upgrade
pip uninstall pynist800108
'''
from setuptools import setup #, find_packages
setup(name="pynist800108",
version="0.1",
description="Python implementation of Nist SP 800-108 KDF in Counter Mode",
#long_description = "",
author = "Aitor Gomez-Goiri",
author_email = "[email protected]",
maintainer = "Aitor Gomez-Goiri",
maintainer_email = "[email protected]",
url = "https://github.com/lightsec/pyNist800-108",
#download_url = "https://github.com/lightsec/pyNist800-108/zipball/master",
#license = "http://www.apache.org/licenses/LICENSE-2.0",
platforms = ["any"],
package_dir = {
'': 'src',
},
packages = ["kdf"],
# Or to include all packages under src...
# from setuptools import find_packages
# packages = find_packages('src'),
install_requires = [
"pycrypto>=2.6.1"
],
# entry_points = {}
keywords = "security lightweight sensor gateway authentication authorization iot things python",
)