Skip to content

Commit

Permalink
make repo pip-compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Vanwynsberghe authored and Charles Vanwynsberghe committed Oct 26, 2020
1 parent 666e84b commit 77c8af6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyworld2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-

__version__ = "1.0"
__version__ = "1.1"

from .world2 import World2, hello_world2
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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",
Expand Down

0 comments on commit 77c8af6

Please sign in to comment.