Update code to put it in pypi 53/37753/1
authorasteroide <thomas.duval@orange.com>
Wed, 19 Jul 2017 08:10:11 +0000 (10:10 +0200)
committerasteroide <thomas.duval@orange.com>
Wed, 19 Jul 2017 08:10:11 +0000 (10:10 +0200)
Change-Id: Ia6e605c8940d7a5bbfdc14562911a0f5aa7597d7

moonv4/moon_orchestrator/MANIFEST.in
moonv4/moon_orchestrator/moon_orchestrator/__init__.py
moonv4/moon_orchestrator/setup.py

index 1f674d5..8de5a39 100644 (file)
@@ -7,3 +7,4 @@ include README.rst
 include LICENSE
 include setup.py
 include requirements.txt
+graft conf
index 903c651..660beb1 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__ = "0.1.0"
+__version__ = "1.0.0"
index b4983e9..88481ce 100644 (file)
@@ -7,6 +7,9 @@ from setuptools import setup, find_packages
 import moon_orchestrator
 
 
+with open('requirements.txt') as f:
+    required = f.read().splitlines()
+
 setup(
 
     name='moon_orchestrator',
@@ -23,7 +26,7 @@ setup(
 
     long_description=open('README.rst').read(),
 
-    # install_requires= ,
+    install_requires=required,
 
     include_package_data=True,