Skip to content

Commit

Permalink
Fixed setup.py package data (#14)
Browse files Browse the repository at this point in the history
* Fixed setup.py package data
* Version bump
  • Loading branch information
jvoss authored Apr 15, 2021
1 parent e843228 commit c45572c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prsw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@

from .ripe_stat import RIPEstat

__version__ = "0.1.0"
__version__ = "0.1.1"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import re
from os import path

from setuptools import setup
from setuptools import find_packages, setup

PACKAGE_NAME = "prsw"
PATH = path.abspath(path.dirname(__file__))
Expand Down Expand Up @@ -54,6 +54,7 @@
keywords="RIPE RIPEStat api wrapper",
license="Simplified BSD License",
long_description=README,
packages=find_packages(exclude=["tests", "tests.*", "tools", "tools.*"]),
project_urls={
"Documentation": "https://prsw.readthedocs.io/",
"Issue Tracker": "https://github.com/jvoss/prsw/issues",
Expand Down

0 comments on commit c45572c

Please sign in to comment.