Merge README and doc and remove INSTALL

issue7397
review253271002
This commit is contained in:
Cédric Krier 2019-04-06 17:38:57 +02:00
parent 826301d797
commit 5090199fa1
5 changed files with 11 additions and 66 deletions

29
INSTALL
View file

@ -1,29 +0,0 @@
Installing trytond_sale_product_customer
========================================
Prerequisites
-------------
* Python 3.4 or later (http://www.python.org/)
* trytond (http://www.tryton.org/)
Installation
------------
Once you've downloaded and unpacked the trytond_sale_product_customer 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://setuptools.readthedocs.io/en/latest/easy_install.html
http://docs.python.org/inst/inst.html
To use without installation, extract the archive into ``trytond/modules`` with
the directory name sale_product_customer.

View file

@ -1,6 +1,5 @@
include INSTALL
include README
include COPYRIGHT
include CHANGELOG
include COPYRIGHT
include LICENSE
include README.rst
include doc/*

32
README
View file

@ -1,32 +0,0 @@
trytond_sale_product_customer
=============================
The sale_product_customer module of the Tryton application platform.
Installing
----------
See INSTALL
Support
-------
If you encounter any problems with Tryton, please don't hesitate to ask
questions on the Tryton forum or IRC channel:
http://www.tryton.org/forum
License
-------
See LICENSE
Copyright
---------
See COPYRIGHT
For more information please visit the Tryton web site:
http://www.tryton.org/

1
README.rst Symbolic link
View file

@ -0,0 +1 @@
doc/index.rst

View file

@ -26,7 +26,7 @@ def get_require_version(name):
config = ConfigParser()
config.read_file(open('tryton.cfg'))
config.read_file(open(os.path.join(os.path.dirname(__file__), 'tryton.cfg')))
info = dict(config.items('tryton'))
for key in ('depends', 'extras_depend', 'xml'):
if key in info:
@ -59,11 +59,17 @@ if minor_version % 2:
setup(name=name,
version=version,
description='Tryton module to manage customer product on sale',
long_description=read('README'),
long_description=read('README.rst'),
author='Tryton',
author_email='bugs@tryton.org',
url='http://www.tryton.org/',
download_url=download_url,
project_urls={
"Bug Tracker": 'https://bugs.tryton.org/',
"Documentation": 'https://docs.tryton.org/',
"Forum": 'https://www.tryton.org/forum',
"Source Code": 'https://hg.tryton.org/modules/sale_product_customer',
},
keywords='tryton sale product customer',
package_dir={'trytond.modules.sale_product_customer': '.'},
packages=(