-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.13 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
"""
Created on Nov 10, 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 liblightsec
"""
from setuptools import setup # , find_packages
setup(name="liblightsec",
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/liblightsec",
# license = "http://www.apache.org/licenses/LICENSE-2.0",
platforms=["any"],
package_dir={
'': 'src',
},
packages=["lightsec"],
# Or to include all packages under src...
# from setuptools import find_packages
# packages = find_packages('src'),
install_requires=[
"pynist800108"
],
# entry_points = {}
keywords="security lightweight sensor gateway authentication authorization iot things python",
)