-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 909 Bytes
/
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
"""
Created on Nov 30, 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 pyclientliblightsec
"""
from setuptools import setup # , find_packages
setup(name="lightsecclient",
version="0.1",
description="Client library for HTTP servers following the lightsec protocol.",
# long_description = "",
author="Aitor Gomez-Goiri",
author_email="[email protected]",
maintainer="Aitor Gomez-Goiri",
maintainer_email="[email protected]",
url="https://github.com/lightsec/python-lightsecclient",
# license = "http://www.apache.org/licenses/LICENSE-2.0",
platforms=["any"],
package_dir={
'': 'src',
},
packages=["lightsecclient"],
install_requires=["liblightsec"],
)