Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from svet-b/fix_setup
Browse files Browse the repository at this point in the history
Fix setup.py so that new 'api' module directory is included in package
  • Loading branch information
m0nhawk committed Oct 6, 2018
2 parents c8df5fa + 73a1f8e commit 7e61620
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
long_description = file.read()

setup(name='grafana_api',
version='0.3.1',
version='0.3.2',
description='Yet another Python library for Grafana API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/m0nhawk/grafana_api',
author='Andrew Prokhorenkov',
author_email='andrew.prokhorenkov@gmail.com',
license='MIT',
packages=['grafana_api'],
packages=[
'grafana_api',
'grafana_api.api'
],
install_requires=[
'requests',
],
Expand Down

0 comments on commit 7e61620

Please sign in to comment.