We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78fdea4 commit d8172e6Copy full SHA for d8172e6
ravenpackapi/core.py
@@ -14,7 +14,7 @@
14
from ravenpackapi.utils.constants import JSON_AVAILABLE_FIELDS
15
16
_VALID_METHODS = ('get', 'post', 'put', 'delete')
17
-VERSION = '1.0.16'
+VERSION = '1.0.17'
18
19
logger = logging.getLogger("ravenpack.core")
20
setup.py
@@ -1,14 +1,14 @@
1
from setuptools import setup, find_packages
2
3
4
5
with open('README.rst') as readme_file:
6
readme = readme_file.read()
7
8
setup(
9
name='ravenpackapi',
10
version=VERSION,
11
- packages=find_packages(include=['ravenpackapi.*']),
+ packages=find_packages(include=['ravenpackapi', 'ravenpackapi.*']),
12
include_package_data=True,
13
url='https://github.com/RavenPack/python-api',
0 commit comments