diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-10-14 22:21:50 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-10-16 12:52:28 +0200 |
| commit | 27653b479a726031ee1481a1df01fa0eb106dd5a (patch) | |
| tree | cb8b48bfce353c0a94999f6b3130af0582ac503a | |
| parent | expand setup.py (diff) | |
| download | SyncRNG-27653b479a726031ee1481a1df01fa0eb106dd5a.tar.gz SyncRNG-27653b479a726031ee1481a1df01fa0eb106dd5a.zip | |
switch to using rst readme
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | setup.py | 6 |
2 files changed, 2 insertions, 5 deletions
@@ -39,7 +39,6 @@ clean: ## Clean build dist and egg directories left after install rm -rf *.so rm -f MANIFEST rm -f .coverage - rm -f README.txt develop: ## Install a development version of the package needed for testing python setup.py develop --user @@ -12,16 +12,14 @@ from distutils.extension import Extension here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'README.md'), 'r') as f: +with open(path.join(here, 'README.rst'), 'r') as f: long_description = f.read() - with open(path.join(here, 'README.txt'), 'w') as o: - o.write(long_description) setup( name='SyncRNG', author='Gertjan van den Burg', author_email='gertjanvandenburg@gmail.com', - version='1.1.0', + version='1.1.1', description='A synchronized Tausworthe RNG for Python and R', long_description=long_description, url='https://github.com/GjjvdBurg/SyncRNG', |
