|
72 | 72 | 'distro/redhat/init.d/carbon-aggregator']) ] |
73 | 73 | install_files += init_scripts |
74 | 74 |
|
| 75 | +def read(fname): |
| 76 | + with open(os.path.join(os.path.dirname(__file__), fname)) as f: |
| 77 | + return f.read() |
75 | 78 |
|
76 | 79 | try: |
77 | 80 | setup( |
|
82 | 85 | author_email='chrismd@gmail.com', |
83 | 86 | license='Apache Software License 2.0', |
84 | 87 | description='Backend data caching and persistence daemon for Graphite', |
85 | | - long_description='Backend data caching and persistence daemon for Graphite', |
| 88 | + long_description=read('README.md'), |
| 89 | + long_description_content_type='text/markdown', |
86 | 90 | packages=['carbon', 'carbon.aggregator', 'twisted.plugins'], |
87 | 91 | package_dir={'' : 'lib'}, |
88 | 92 | scripts=glob('bin/*'), |
|
97 | 101 | 'Programming Language :: Python :: 2', |
98 | 102 | 'Programming Language :: Python :: 2.7', |
99 | 103 | 'Programming Language :: Python :: 3', |
100 | | - 'Programming Language :: Python :: 3.4', |
101 | 104 | 'Programming Language :: Python :: 3.5', |
102 | 105 | 'Programming Language :: Python :: 3.6', |
103 | 106 | 'Programming Language :: Python :: 3.7', |
| 107 | + 'Programming Language :: Python :: 3.8', |
104 | 108 | 'Programming Language :: Python :: Implementation :: CPython', |
105 | 109 | 'Programming Language :: Python :: Implementation :: PyPy', |
106 | 110 | ), |
|
0 commit comments