Changes in setup.py [bc1ed63:b1294cc]
Legend:
- Unmodified
- Added
- Removed
-
setup.py
rbc1ed63 rb1294cc 63 63 ] 64 64 65 thisdir = os.path.abspath(os.path.dirname(__file__)) 66 py_readme_file = os.path.join(thisdir, 'python', 'README.md') 67 with open(py_readme_file, 'r') as fp: 68 long_description = ''.join(fp.readlines()[3:]) 69 65 70 distrib = setup(name='aubio', 66 71 version = __version__, … … 69 74 ext_modules = [aubio_extension], 70 75 description = 'a collection of tools for music analysis', 71 long_description = 'a collection of tools for music analysis', 76 long_description = long_description, 77 long_description_content_type = 'text/markdown', 72 78 license = 'GNU/GPL version 3', 73 79 author = 'Paul Brossier',
Note: See TracChangeset
for help on using the changeset viewer.