1.0.0
-----
- First public version of the moon_db library.
+
+1.0.1
+-----
+- Update setup.py to force the installation of requirements.
+
# 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"
import moon_db
+with open('requirements.txt') as f:
+ required = f.read().splitlines()
+
setup(
name='moon_db',
long_description=open('README.rst').read(),
- # install_requires= ,
+ install_requires=required,
include_package_data=True,
--- /dev/null
+# 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.
+
include README.rst
include LICENSE
+include Changelog
include setup.py
include requirements.txt
# 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"
from setuptools import setup, find_packages
import moon_utilities
+with open('requirements.txt') as f:
+ required = f.read().splitlines()
setup(
long_description=open('README.rst').read(),
- # install_requires= ,
+ install_requires=required,
include_package_data=True,