summaryrefslogtreecommitdiffstats
path: root/pyload/__init__.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-07 20:39:28 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-09-14 11:03:06 +0200
commitcfa3bbced0f9654837fc5734bc466dde6e27275f (patch)
tree71376815f56db6b8c6c9ad6f7f974eedfc064ce7 /pyload/__init__.py
parent[Lib] Update simplejson to v3.6.3 + one file wsgiserver + importing fixup (diff)
downloadpyload-cfa3bbced0f9654837fc5734bc466dde6e27275f.tar.xz
Project __init__ with info
Diffstat (limited to 'pyload/__init__.py')
-rw-r--r--pyload/__init__.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyload/__init__.py b/pyload/__init__.py
index e69de29bb..bd96630c3 100644
--- a/pyload/__init__.py
+++ b/pyload/__init__.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+__all__ = ["__status_code__", "__status__", "__version_info__", "__version__", "__author_name__", "__author_mail__", "__license__"]
+
+__status_code__ = 4
+__status__ = {1: "Planning",
+ 2: "Pre-Alpha",
+ 3: "Alpha",
+ 4: "Beta",
+ 5: "Production/Stable",
+ 6: "Mature",
+ 7: "Inactive"}[__status_code__] #: PyPI Development Status Classifiers
+
+__version_info__ = (0, 4, 10)
+__version__ = '.'.join(map(str(v), __version_info__))
+
+__author_name__ = "pyLoad Team"
+__author_mail__ = "admin@pyload.org"
+
+__license__ = "GNU Affero General Public License v3"