Force requirements to be installed with pip 45/37745/1
authorasteroide <thomas.duval@orange.com>
Tue, 18 Jul 2017 15:20:14 +0000 (17:20 +0200)
committerasteroide <thomas.duval@orange.com>
Tue, 18 Jul 2017 15:20:14 +0000 (17:20 +0200)
Change-Id: I96ae3880e3698a8ba5860d013b0e83de3f3f60d5

moonv4/moon_db/Changelog
moonv4/moon_db/moon_db/__init__.py
moonv4/moon_db/setup.py
moonv4/moon_utilities/Changelog [new file with mode: 0644]
moonv4/moon_utilities/MANIFEST.in
moonv4/moon_utilities/moon_utilities/__init__.py
moonv4/moon_utilities/setup.py

index b69bdae..94631fc 100644 (file)
@@ -14,3 +14,8 @@ CHANGES
 1.0.0
 -----
 - First public version of the moon_db library.
+
+1.0.1
+-----
+- Update setup.py to force the installation of requirements.
+
index 578e22a..ddfaf2b 100644 (file)
@@ -3,5 +3,5 @@
 # license which can be found in the file 'LICENSE' in this package distribution
 # or at 'http://www.apache.org/licenses/LICENSE-2.0'.
 
-__version__ = "1.0.0"
+__version__ = "1.0.1"
 
index 51bb453..0d2aa1b 100644 (file)
@@ -7,6 +7,9 @@ from setuptools import setup, find_packages
 import moon_db
 
 
+with open('requirements.txt') as f:
+    required = f.read().splitlines()
+
 setup(
 
     name='moon_db',
@@ -23,7 +26,7 @@ setup(
 
     long_description=open('README.rst').read(),
 
-    # install_requires= ,
+    install_requires=required,
 
     include_package_data=True,
 
diff --git a/moonv4/moon_utilities/Changelog b/moonv4/moon_utilities/Changelog
new file mode 100644 (file)
index 0000000..c91a038
--- /dev/null
@@ -0,0 +1,21 @@
+# Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
+# This software is distributed under the terms and conditions of the 'Apache-2.0'
+# license which can be found in the file 'LICENSE' in this package distribution
+# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
+
+
+CHANGES
+=======
+
+0.1.0
+-----
+- First version of the moon_utilities library.
+
+1.0.0
+-----
+- First public version of the moon_utilities library.
+
+1.0.1
+-----
+- Update setup.py to force the installation of requirements.
+
index 1f674d5..b764e35 100644 (file)
@@ -5,5 +5,6 @@
 
 include README.rst
 include LICENSE
+include Changelog
 include setup.py
 include requirements.txt
index 660beb1..2249a1b 100644 (file)
@@ -3,4 +3,4 @@
 # license which can be found in the file 'LICENSE' in this package distribution
 # or at 'http://www.apache.org/licenses/LICENSE-2.0'.
 
-__version__ = "1.0.0"
+__version__ = "1.0.1"
index 9bd1db4..6c9ffd3 100644 (file)
@@ -6,6 +6,8 @@
 from setuptools import setup, find_packages
 import moon_utilities
 
+with open('requirements.txt') as f:
+    required = f.read().splitlines()
 
 setup(
 
@@ -23,7 +25,7 @@ setup(
 
     long_description=open('README.rst').read(),
 
-    # install_requires= ,
+    install_requires=required,
 
     include_package_data=True,