Skip to content

Commit f15ac87

Browse files
author
Ram Idavalapati
authored
Merge pull request #4 from RamanjaneyuluIdavalapati/master
pkgutil-style namespace packages is used for installing
2 parents 4fddc65 + 6976f4d commit f15ac87

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ deploy:
1717
- kwikapi/__init__.py
1818
- kwikapi/django/__init__.py
1919
- kwikapi/django/kwikapi_django.py
20-
name: kwikapi.django-0.2
21-
tag_name: 0.2
20+
name: kwikapi.django-0.2.1
21+
tag_name: 0.2.1
2222
on:
2323
repo: deep-compute/kwikapi.django
2424
- provider: pypi

kwikapi/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
from setuptools import setup, find_packages
22

3-
version = '0.2'
3+
version = '0.2.1'
44
setup(
55
name="kwikapi-django",
66
version=version,
7-
packages=find_packages("."),
8-
package_dir={'kwikapi_django': 'django'},
7+
packages=['kwikapi.django'],
98
include_package_data=True,
109
license='MIT License', # example license
1110
description='Quickest way to build powerful HTTP APIs in Python',

0 commit comments

Comments
 (0)