[Python-modules-commits] [python-setoptconf] 01/04: removed setoptconf.egg-info
Daniel Stender
danstender-guest at moszumanska.debian.org
Sat Oct 17 22:25:34 UTC 2015
This is an automated email from the git hooks/post-receive script.
danstender-guest pushed a commit to branch master
in repository python-setoptconf.
commit 37c279f90bb568e28258e6830ff7e31fa9a9b5a1
Author: Daniel Stender <debian at danielstender.com>
Date: Sun Oct 18 00:24:09 2015 +0200
removed setoptconf.egg-info
---
setoptconf.egg-info/PKG-INFO | 79 --------------------------------
setoptconf.egg-info/SOURCES.txt | 34 --------------
setoptconf.egg-info/dependency_links.txt | 1 -
setoptconf.egg-info/requires.txt | 4 --
setoptconf.egg-info/top_level.txt | 1 -
5 files changed, 119 deletions(-)
diff --git a/setoptconf.egg-info/PKG-INFO b/setoptconf.egg-info/PKG-INFO
deleted file mode 100644
index 5a43079..0000000
--- a/setoptconf.egg-info/PKG-INFO
+++ /dev/null
@@ -1,79 +0,0 @@
-Metadata-Version: 1.1
-Name: setoptconf
-Version: 0.2.0
-Summary: A module for retrieving program settings from various sources in a consistant method.
-Home-page: https://github.com/jayclassless/setoptconf
-Author: Jason Simeone
-Author-email: jay at classless.net
-License: MIT
-Description: ==========
- setoptconf
- ==========
-
- .. image:: https://travis-ci.org/jayclassless/setoptconf.svg?branch=master
- :target: https://travis-ci.org/jayclassless/setoptconf
-
- ``setoptconf`` is a Python library that can be used to retrieve program settings
- from a variety of common sources:
-
- * Command Line
- * Environment Variables
- * INI Files
- * JSON Files
- * YAML Files
- * Python Objects/Modules
-
- The goal of this project is to define your desired settings in a simple and
- consistent way, and then point setoptconf at as many of the sources as you'd
- like to use, and let it comb them all, looking for your settings.
-
- This README is admittedly very light on details. Full documentation will come
- in time. For now, here's an example of its use:
-
- Import the library::
-
- import setoptconf as soc
-
- Instantiate the manager::
-
- manager = soc.ConfigurationManager('myprogram')
-
- Define the settings we'd like to collect::
-
- manager.add(soc.StringSetting('foo'))
- manager.add(soc.IntegerSetting('bar', required=True))
- manager.add(soc.BooleanSetting('baz', default=True))
-
- Retreive the settings from our desired sources, combining the settings and
- overriding with the priority implied by the order of the sources we pass::
-
- config = manager.retrieve(
- # This source pulls from the command line using argparse.
- soc.CommandLineSource,
-
- # This source pulls from environment variables that are prefixed
- # with MYPROGRAM_*
- soc.EnvironmentVariableSource,
-
- # This source pulls from the named INI files. It stops at the first
- # file it finds.
- soc.ConfigFileSource(('.myprogramrc', '/etc/myprogram.conf')),
- )
-
- We now have a Configuration object named ``config`` that has three attributes;
- ``foo``, ``bar``, and ``baz``.
-
-
-Keywords: settings,options,configuration,config,arguments
-Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: MIT License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.1
-Classifier: Programming Language :: Python :: 3.2
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/setoptconf.egg-info/SOURCES.txt b/setoptconf.egg-info/SOURCES.txt
deleted file mode 100644
index 7315f41..0000000
--- a/setoptconf.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-LICENSE
-MANIFEST.in
-README.rst
-setup.cfg
-setup.py
-setoptconf/__init__.py
-setoptconf/config.py
-setoptconf/datatype.py
-setoptconf/exception.py
-setoptconf/manager.py
-setoptconf/setting.py
-setoptconf/util.py
-setoptconf.egg-info/PKG-INFO
-setoptconf.egg-info/SOURCES.txt
-setoptconf.egg-info/dependency_links.txt
-setoptconf.egg-info/requires.txt
-setoptconf.egg-info/top_level.txt
-setoptconf/source/__init__.py
-setoptconf/source/base.py
-setoptconf/source/commandline.py
-setoptconf/source/configfile.py
-setoptconf/source/environment.py
-setoptconf/source/filebased.py
-setoptconf/source/jsonfile.py
-setoptconf/source/mapping.py
-setoptconf/source/modobj.py
-setoptconf/source/yamlfile.py
-test/test_configuration.py
-test/test_datatypes.py
-test/test_directory_modifiers.py
-test/test_file_sources.py
-test/test_manager.py
-test/test_settings.py
-test/test_sources.py
\ No newline at end of file
diff --git a/setoptconf.egg-info/dependency_links.txt b/setoptconf.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/setoptconf.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/setoptconf.egg-info/requires.txt b/setoptconf.egg-info/requires.txt
deleted file mode 100644
index bc55498..0000000
--- a/setoptconf.egg-info/requires.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-[YAML]
-pyyaml
\ No newline at end of file
diff --git a/setoptconf.egg-info/top_level.txt b/setoptconf.egg-info/top_level.txt
deleted file mode 100644
index 10ce273..0000000
--- a/setoptconf.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-setoptconf
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-setoptconf.git
More information about the Python-modules-commits
mailing list