diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 45e005c..0000000 --- a/INSTALL +++ /dev/null @@ -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. diff --git a/MANIFEST.in b/MANIFEST.in index b4f6b19..e88b234 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,5 @@ -include INSTALL -include README -include COPYRIGHT include CHANGELOG +include COPYRIGHT include LICENSE +include README.rst include doc/* diff --git a/README b/README deleted file mode 100644 index ef9db97..0000000 --- a/README +++ /dev/null @@ -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/ diff --git a/README.rst b/README.rst new file mode 120000 index 0000000..176d9c2 --- /dev/null +++ b/README.rst @@ -0,0 +1 @@ +doc/index.rst \ No newline at end of file diff --git a/setup.py b/setup.py index 1a14234..ce485ca 100644 --- a/setup.py +++ b/setup.py @@ -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=(