#!/usr/bin/env python from setuptools import setup, find_packages from opennode.utils.version import get_git_version setup( name = "opennode.oms.core", version = get_git_version(), description = """OpenNode OMS""", author = "OpenNode Developers", author_email = "*****@*****.**", packages = find_packages(), package_data={'opennode.oms': ['../oms.tac', '../../opennode-oms.conf', '../../oms_permissions', '../../oms_groups', '../../oms_acl', '../../logging.conf', ]}, namespace_packages = ['opennode'], entry_points = {'console_scripts': ['omsd = opennode.oms.daemon:run', 'omspy = opennode.oms.pyshell:run', 'omspasswd = opennode.oms.security.passwd:run', 'plugin = opennode.oms.plugin:run', 'obj_graph = opennode.oms.tools.obj_graph:run', ]}, install_requires = [ "setuptools", # Redundant but removes a warning "Twisted==13.1.0", "pyasn1==0.1.2", # required by Twisted conch "transaction",
# The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'OMS' copyright = u'2011, Opennode Ltd' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = get_git_version() # The full version, including alpha/beta/rc tags. release = get_git_version() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.
#!/usr/bin/env python from setuptools import setup, find_packages from opennode.utils.version import get_git_version setup( name = "opennode.oms.core", version = get_git_version(), description = """OpenNode OMS""", author = "OpenNode Developers", author_email = "*****@*****.**", packages = find_packages(), package_data={'opennode.oms': ['../oms.tac', '../../opennode-oms.conf', '../../oms_permissions', '../../oms_groups', '../../oms_acl', '../../logging.conf', ]}, namespace_packages = ['opennode'], entry_points = {'console_scripts': ['omsd = opennode.oms.daemon:run', 'omspy = opennode.oms.pyshell:run', 'omspasswd = opennode.oms.security.passwd:run', 'plugin = opennode.oms.plugin:run', 'obj_graph = opennode.oms.tools.obj_graph:run', ]}, install_requires = [ "setuptools", # Redundant but removes a warning "Twisted==13.1.0", "pyasn1==0.1.2", # required by Twisted conch "transaction==1.3.0",