Skip to content

Commit bba9218

Browse files
committed
fixing up pypi
1 parent 7db3ff4 commit bba9218

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
pandoc -f markdown -t rst README.md > README.rst
4+
python setup.py install sdist $1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
setup(
66
name="bashplotlib",
7-
version="0.5.3",
7+
version="0.6.1",
88
author="Greg Lamp",
99
author_email="[email protected]",
1010
url="https://github.com/glamp/bashplotlib",
11-
license=open("LICENSE.txt").read(),
11+
license="BSD",
1212
packages=find_packages(),
1313
description="plotting in the terminal",
14-
long_description=open("README.md").read(),
14+
long_description=open("README.rst").read(),
1515
entry_points = {
1616
'console_scripts': [
1717
'hist=bashplotlib.histogram:main',

0 commit comments

Comments
 (0)