Skip to content

Commit

Permalink
[mgmt] #20: fix setup.py (pypi package builder)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Bour committed Jul 2, 2016
1 parent da596a7 commit 9e6a823
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include README.md
include test/*
9 changes: 7 additions & 2 deletions setup.py
@@ -1,17 +1,22 @@
import os, sys
from setuptools import Command, setup

long_description = open('README').read()
long_description = open('README.md').read()

setup(
author = 'Iwan Budi Kusnanto',
url = 'https://github.com/iwanbk/nyamuk',
author_email ='iwan.b.kusnanto@gmail.com',
version ='0.1',
version ='0.2.0',
install_requires = [],
packages = ['nyamuk'],
name = 'nyamuk',
description = 'Python MQTT Client Library',
long_description = long_description,
license = "BSD",
data_files = [
('doc/examples', ['test/pubnya.py', 'test/subnya.py',
'test/simple_publish.py', 'test/simple_subscribe.py']),
('doc', ['README.md'])
],
)

0 comments on commit 9e6a823

Please sign in to comment.