Skip to content
This repository has been archived by the owner on Mar 11, 2018. It is now read-only.

Commit

Permalink
Update "Pypi" setup file.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Apr 21, 2013
1 parent 94702fc commit d70a07e
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions setup.py
@@ -1,9 +1,66 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
**setup.py**
**Platform:**
Windows, Linux, Mac Os X.
**Description:**
`https://pypi.python.org/pypi/Manager <https://pypi.python.org/pypi/Manager>`_ package setup file.
**Others:**
"""

#**********************************************************************************************************************
#*** Future imports.
#**********************************************************************************************************************
from __future__ import unicode_literals

#**********************************************************************************************************************
#*** Encoding manipulations.
#**********************************************************************************************************************
import sys

def _setEncoding():
"""
This definition sets the Application encoding.
"""

reload(sys)
sys.setdefaultencoding("utf-8")

_setEncoding()

#**********************************************************************************************************************
#*** External imports.
#**********************************************************************************************************************
import re import re
from setuptools import setup from setuptools import setup
from setuptools import find_packages from setuptools import find_packages


#**********************************************************************************************************************
#*** Internal imports.
#**********************************************************************************************************************
import manager.globals.constants import manager.globals.constants


#**********************************************************************************************************************
#*** Module attributes.
#**********************************************************************************************************************
__author__ = "Thomas Mansencal"
__copyright__ = "Copyright (C) 2008 - 2013 - Thomas Mansencal"
__license__ = "GPL V3.0 - http://www.gnu.org/licenses/"
__maintainer__ = "Thomas Mansencal"
__email__ = "thomas.mansencal@gmail.com"
__status__ = "Production"

__all__ = ["getLongDescription"]

#**********************************************************************************************************************
#*** Module classes and definitions.
#**********************************************************************************************************************
def getLongDescription(): def getLongDescription():
""" """
This definition returns the Package long description. This definition returns the Package long description.
Expand Down

0 comments on commit d70a07e

Please sign in to comment.