From ae778383d49d24136eb1b68b007443c89ad10dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Tue, 13 Feb 2018 20:37:29 +0100 Subject: [PATCH] Add link to docs, prepare for 0.1 --- README.rst | 5 +++++ setup.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 7f1cefb..a96e413 100644 --- a/README.rst +++ b/README.rst @@ -3,6 +3,11 @@ Python Monero module A comprehensive Python module for handling Monero cryptocurrency. + * release 0.1 + * Please read `the docs`_ (incomplete yet) + +.. _`The docs`: http://monero-python.readthedocs.io/en/latest/transactions.html + Copyrights ---------- diff --git a/setup.py b/setup.py index eb37253..e83c5b0 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,14 @@ from setuptools import find_packages version = __import__('monero').__version__ setup( - name = 'monero', + name = 'monero-python', version = version, description = 'A comprehensive Python module for handling Monero cryptocurrency', url = 'https://github.com/emesik/monero-python/', long_description = open('README.rst').read(), install_requires = open('requirements.txt', 'r').read().splitlines(), packages = find_packages(), + data_files = ['requirements.txt'], include_package_data = True, author = 'Michał Sałaban', author_email = 'michal@salaban.info',