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']}, )