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',