Skip to content

Commit

Permalink
Merge pull request #2407 from YevhenLukomskyi/set-package-long-descri…
Browse files Browse the repository at this point in the history
…ption

set package long description
  • Loading branch information
piotr1212 authored Jan 7, 2019
2 parents c3b06cc + 22e8348 commit bddaed2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include LICENSE
include README.md
include MANIFEST.in
include check-dependencies.py
include examples/*
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
conf_files = [ ('conf', glob('conf/*.example')) ]
examples = [ ('examples', glob('examples/example-*')) ]

def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()

try:
setup(
name='graphite-web',
Expand All @@ -80,6 +84,8 @@
author_email='chrismd@gmail.com',
license='Apache Software License 2.0',
description='Enterprise scalable realtime graphing',
long_description=read('README.md'),
long_description_content_type='text/markdown',
package_dir={'' : 'webapp'},
packages=[
'graphite',
Expand Down

0 comments on commit bddaed2

Please sign in to comment.