Esempio n. 1
0
from setuptools import setup, find_packages
from fakturo.core.openstack.common import setup as common_setup
from fakturo.core.version import version_info as version

install_requires = common_setup.parse_requirements(['tools/pip-requires'])
tests_require = common_setup.parse_requirements(['tools/test-requires'])
setup_require = common_setup.parse_requirements(['tools/setup-requires'])
dependency_links = common_setup.parse_dependency_links([
    'tools/pip-requires',
    'tools/test-requires',
    'tools/setup-requires'
])

setup(
    name='python-fakturo',
    version=version.canonical_version_string(always=True),
    description='A provider of bindings / CLI commands for billingsystems',
    author='Endre Karlson',
    author_email='*****@*****.**',
    url='https://github.com/ekarlso/fakturo',
    namespace_packages=['fakturo'],
    packages=find_packages(exclude=['bin']),
    include_package_data=True,
    test_suite='nose.collector',
    setup_requires=setup_require,
    install_requires=install_requires,
    tests_require=tests_require,
    extras_require={'test': tests_require},
    dependency_links=dependency_links,
    scripts=[
        'bin/fakturo',
Esempio n. 2
0
# The encoding of source files.
#source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'python-fakturo'

# 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.
from fakturo.core.version import version_info as fakturoclient_version
version = fakturoclient_version.canonical_version_string()
# The full version, including alpha/beta/rc tags.
release = fakturoclient_version.version_string_with_vcs()

# 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.
Esempio n. 3
0
# source_encoding = 'utf-8-sig'

# The master toctree document.
master_doc = "index"

# General information about the project.
project = u"python-fakturo"

# 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.
from fakturo.core.version import version_info as fakturoclient_version

version = fakturoclient_version.canonical_version_string()
# The full version, including alpha/beta/rc tags.
release = fakturoclient_version.version_string_with_vcs()

# 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.
Esempio n. 4
0
# License for the specific language governing permissions and limitations
# under the License.
import textwrap
from setuptools import setup, find_packages
from fakturo.core.openstack.common import setup as common_setup
from fakturo.core.version import version_info as version

install_requires = common_setup.parse_requirements(['tools/pip-requires'])
tests_require = common_setup.parse_requirements(['tools/test-requires'])
setup_require = common_setup.parse_requirements(['tools/setup-requires'])
dependency_links = common_setup.parse_dependency_links(
    ['tools/pip-requires', 'tools/test-requires', 'tools/setup-requires'])

setup(
    name='python-fakturo',
    version=version.canonical_version_string(always=True),
    description='A provider of bindings / CLI commands for billingsystems',
    author='Endre Karlson',
    author_email='*****@*****.**',
    url='https://github.com/ekarlso/fakturo',
    namespace_packages=['fakturo'],
    packages=find_packages(exclude=['bin']),
    include_package_data=True,
    test_suite='nose.collector',
    setup_requires=setup_require,
    install_requires=install_requires,
    tests_require=tests_require,
    extras_require={'test': tests_require},
    dependency_links=dependency_links,
    scripts=[
        'bin/fakturo',