From bbfb6dc42596a3de8b0f85ae58903a3f292104ba Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 20 Apr 2018 22:38:22 +0200 Subject: [PATCH] Bump to 1.1.0 --- setup.cfg | 5 +++++ setup.py | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..a3e84ca --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[metadata] +license_file = LICENSE + +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py index 6bb5960..01b9d7a 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ -#!/usr/bin/env python3`` +#!/usr/bin/env python3 from setuptools import setup setup( name="RSI.py", - version="1.0.2", + version="1.1.0", description="A library for manipulation of the RSI format used in Space Station 14.", url="https://github.com/space-wizards/RSI.py", author="Pieter-Jan Briers", @@ -23,5 +23,8 @@ "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], + project_urls={ + "Source": "https://github.com/space-wizards/RSI.py" + }, entry_points={'console_scripts': ['rsi=rsi.__main__:main']}, )