Pin pylint version
[osm/N2VC.git] / setup.py
index 1450a15..7a4fe87 100644 (file)
--- a/setup.py
+++ b/setup.py
 #     See the License for the specific language governing permissions and
 #     limitations under the License.
 
-from pathlib import Path
 from setuptools import setup, find_packages
 
+_description = 'OSM library implementing common interface towards VCA module'
+
 setup(
     name='N2VC',
-    version=0.1,
+    version_command=('git describe --match v* --tags --long --dirty',
+                     'pep440-git-full'),
     packages=find_packages(
         exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
     install_requires=[
-        'macaroonbakery>=1.1,<2.0',
-        'pyRFC3339>=1.0,<2.0',
-        'pyyaml>=3.0,<4.0',
-        'theblues>=0.3.8,<1.0',
-        'websockets>=4.0,<5.0',
-        'paramiko',
+        'juju==2.8.4',
+        'pyasn1>=0.4.4',
+        'kubernetes==10.0.1'
     ],
     include_package_data=True,
-    maintainer='',
-    maintainer_email='',
-    description=(''),
+    maintainer='Adam Israel',
+    maintainer_email='adam.israel@canonical.com',
+    description=_description,
     url='',
     license='Apache 2',
     entry_points={