Add link to docs, prepare for 0.1

This commit is contained in:
Michał Sałaban 2018-02-13 20:37:29 +01:00
parent 36e5d7edd8
commit ae778383d4
2 changed files with 7 additions and 1 deletions

View File

@ -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
----------

View File

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