diff options
author | 2017-07-19 08:11:15 +0000 | |
---|---|---|
committer | 2017-07-19 08:11:15 +0000 | |
commit | 2513cb55eeea516fec50f2fa781ce778eeae1059 (patch) | |
tree | 8f45b71b4ebe8315f9b2befc0f4228251dc5ff35 | |
parent | 1eb5524be074b25b09a023aa17b60c427b733479 (diff) | |
parent | ae5d19039729c625b578df9a5d0a475adc1f0226 (diff) |
Merge "Update code to put it in pypi"
-rw-r--r-- | moonv4/moon_orchestrator/MANIFEST.in | 1 | ||||
-rw-r--r-- | moonv4/moon_orchestrator/moon_orchestrator/__init__.py | 2 | ||||
-rw-r--r-- | moonv4/moon_orchestrator/setup.py | 5 |
3 files changed, 6 insertions, 2 deletions
diff --git a/moonv4/moon_orchestrator/MANIFEST.in b/moonv4/moon_orchestrator/MANIFEST.in index 1f674d50..8de5a391 100644 --- a/moonv4/moon_orchestrator/MANIFEST.in +++ b/moonv4/moon_orchestrator/MANIFEST.in @@ -7,3 +7,4 @@ include README.rst include LICENSE include setup.py include requirements.txt +graft conf diff --git a/moonv4/moon_orchestrator/moon_orchestrator/__init__.py b/moonv4/moon_orchestrator/moon_orchestrator/__init__.py index 903c6518..660beb1e 100644 --- a/moonv4/moon_orchestrator/moon_orchestrator/__init__.py +++ b/moonv4/moon_orchestrator/moon_orchestrator/__init__.py @@ -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" diff --git a/moonv4/moon_orchestrator/setup.py b/moonv4/moon_orchestrator/setup.py index b4983e93..88481ceb 100644 --- a/moonv4/moon_orchestrator/setup.py +++ b/moonv4/moon_orchestrator/setup.py @@ -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, |