Skip to content

Commit

Permalink
added shell for tgext.admin
Browse files Browse the repository at this point in the history
  • Loading branch information
percious17 committed Jan 13, 2009
0 parents commit 2edbb02
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.txt
@@ -0,0 +1,4 @@
Introduction
============


8 changes: 8 additions & 0 deletions docs/HISTORY.txt
@@ -0,0 +1,8 @@
Changelog
=========

0.1 - Unreleased
----------------

* Initial release

3 changes: 3 additions & 0 deletions setup.cfg
@@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
32 changes: 32 additions & 0 deletions setup.py
@@ -0,0 +1,32 @@
from setuptools import setup, find_packages
import os

version = '0.1'

setup(name='tgext.admin',
version=version,
description="Admin Controller add-on for basic TG identity model.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='TG2, TG, sprox, Rest, internet, adminn',
author='Christopher Perkins',
author_email='chris@percious.com',
url='tgtools.googlecode.com',
license='MIT',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['tgext'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)
6 changes: 6 additions & 0 deletions tgext/__init__.py
@@ -0,0 +1,6 @@
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
Empty file added tgext/admin/__init__.py
Empty file.

0 comments on commit 2edbb02

Please sign in to comment.