Skip to content

Commit

Permalink
Merge pull request #91 from bewest/bewest/dev
Browse files Browse the repository at this point in the history
dev branch
  • Loading branch information
bewest committed May 19, 2015
2 parents 5c94e61 + 0e12a64 commit 5f224e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test:

install:
python setup.py develop
install 80-medtronic-carelink.rules /etc/udev/rules.d/
install decocare/etc/80-medtronic-carelink.rules /etc/udev/rules.d/
udevadm control --reload-rules

ci-install:
Expand Down
File renamed without changes.
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,13 @@
import platform

import decocare

def readme():
with open("README.markdown") as f:
return f.read()

dataFiles = [ ]
if platform.system( ) == 'Linux':
dataFiles = [
('/etc/udev/rules.d', ['80-medtronic-carelink.rules' ]),
]

setup(name='decocare',
version='0.0.13', # http://semver.org/
version='0.0.14', # http://semver.org/
description='Audit, inspect, and command MM insulin pumps.',
long_description=readme(),
author="Ben West",
Expand Down Expand Up @@ -46,7 +41,9 @@ def readme():
'Topic :: Software Development :: Libraries'
],
include_package_data=True,
data_files=dataFiles,
package_data = {
'decocare': ['etc/*.rules']
},
zip_safe=False
)

Expand Down

0 comments on commit 5f224e0

Please sign in to comment.