From 114dd5c25e78ee19a3884f021e716d70ebc386c3 Mon Sep 17 00:00:00 2001 From: resteve Date: Mon, 14 Dec 2015 15:29:08 +0100 Subject: [PATCH] Initial commit --- CHANGELOG | 1 + COPYRIGHT | 14 ++++++++++++ INSTALL | 27 ++++++++++++++++++++++ README | 40 +++++++++++++++++++++++++++++++++ setup.py | 40 +++++++++++++++++++++++++++++++++ trytontasks_modules/__init__.py | 8 +++++++ trytontasks_modules/version.py | 8 +++++++ 7 files changed, 138 insertions(+) create mode 100644 CHANGELOG create mode 100644 COPYRIGHT create mode 100644 INSTALL create mode 100644 README create mode 100644 setup.py create mode 100644 trytontasks_modules/__init__.py create mode 100644 trytontasks_modules/version.py diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1 @@ + diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..d031ec5 --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,14 @@ +Copyright (C) 2015 TrytonSpain + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..fb90c81 --- /dev/null +++ b/INSTALL @@ -0,0 +1,27 @@ +Installing trytontasks-modules +============================== + +Prerequisites +------------- + + * Python 2.7 or later (http://www.python.org/) + * invoke (https://pypi.python.org/pypi/invoke/) + * See requeriments.txt + +Installation +------------ + +Once you've downloaded and unpacked the trytond_esale source release, enter the +directory where the archive was unpacked, and run: + + python setup.py install + +Note that you may need administrator/root privileges for this step, as +this command will by default attempt to install module to the Python +site-packages directory on your system. + +For advanced options, please refer to the easy_install and/or the distutils +documentation: + + http://peak.telecommunity.com/DevCenter/EasyInstall + http://docs.python.org/inst/inst.html diff --git a/README b/README new file mode 100644 index 0000000..8abc84f --- /dev/null +++ b/README @@ -0,0 +1,40 @@ +Tryton Tasks Modules +==================== + +List modules + +Installing +---------- + +See INSTALL + +Support +------- + +For more information or if you encounter any problems with this module, +please contact the programmers at + + TrytonSpain + ----------- + website: http://www.tryton-erp.es/ + project: https://bitbucket.org/trytonspain/ + +If you encounter any problems with Tryton, please don't hesitate to ask +questions on the Tryton bug tracker, mailing list, wiki or IRC channel: + + https://bitbucket.org/trytonspain/ + +License +------- + +See LICENSE + +Copyright +--------- + +See COPYRIGHT + + +For more information please visit the Tryton web site: + + http://www.tryton-erp.es/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f9d81c8 --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +#This file is part of trytontasks_modules. The COPYRIGHT file at the top level of +#this repository contains the full copyright notices and license terms. +from setuptools import setup, find_packages +import os + +execfile(os.path.join('trytontasks_modules', 'version.py')) + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + + +setup(name=PACKAGE, + version=VERSION, + description='Tryton Tasks Modules', + long_description=read('README'), + author=AUTHOR, + url=WEBSITE, + download_url="https://bitbucket.org/trytonspain/trytontasks-modules", + packages=find_packages(), + package_data={}, + scripts=[], + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: No Input/Output (Daemon)', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Libraries', + ], + license=LICENSE, + install_requires=[ + 'invoke>=0.11.1', + ], + extras_require={}, + zip_safe=False, + #~ test_suite='trytontasks_modules.tests', + ) diff --git a/trytontasks_modules/__init__.py b/trytontasks_modules/__init__.py new file mode 100644 index 0000000..33cdc6d --- /dev/null +++ b/trytontasks_modules/__init__.py @@ -0,0 +1,8 @@ +#This file is part of trytontasks_modules. The COPYRIGHT file at the top level of +#this repository contains the full copyright notices and license terms. +from invoke import task, run + +@task +def list(): + 'List modules' + print "List modules and repos" diff --git a/trytontasks_modules/version.py b/trytontasks_modules/version.py new file mode 100644 index 0000000..bc31191 --- /dev/null +++ b/trytontasks_modules/version.py @@ -0,0 +1,8 @@ +#This file is part of trytontasks_modules. The COPYRIGHT file at the top level of +#this repository contains the full copyright notices and license terms. + +PACKAGE = 'trytontasks_modules' +VERSION = '0.0.1' +LICENSE = 'GPL-3' +WEBSITE = 'http://www.tryton-erp.es/' +AUTHOR = 'TrytonSpain'