From 77c8af66ceac5f1030bad246979013714585db50 Mon Sep 17 00:00:00 2001 From: Charles Vanwynsberghe Date: Mon, 26 Oct 2020 13:40:45 +0100 Subject: [PATCH] make repo pip-compatible --- pyworld2/__init__.py | 2 +- setup.py | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pyworld2/__init__.py b/pyworld2/__init__.py index 968d876..b758a22 100644 --- a/pyworld2/__init__.py +++ b/pyworld2/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "1.0" +__version__ = "1.1" from .world2 import World2, hello_world2 diff --git a/setup.py b/setup.py index db4058f..9578fb8 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,14 @@ import pyworld2 + +description = "A Python implementation of the model World2." setup( name='pyworld2', version=pyworld2.__version__, packages=["pyworld2"], - description="A Python implementation of the model World2", - long_description=open('README.md').read(), + description=description, + long_description=description, author="Charles Vanwynsberghe", url='http://github.com/cvanwynsberghe/pyworld2', @@ -24,8 +26,11 @@ "Programming Language :: Python", "Natural Language :: English", "Operating System :: OS Independent", - "Topic :: Science", + "Topic :: Scientific/Engineering", "Topic :: Education", + "Intended Audience :: Science/Research", + "Intended Audience :: Education", + "License :: OSI Approved :: MIT License", ], license="MIT",