Changeset e6a07fe


Ignore:
Timestamp:
Nov 21, 2018, 4:41:58 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
39d6fba
Parents:
0c18603
Message:

[pip] use python/README.md for package long description

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    r0c18603 re6a07fe  
    6363    ]
    6464
     65thisdir = os.path.abspath(os.path.dirname(__file__))
     66py_readme_file = os.path.join(thisdir, 'python', 'README.md')
     67with open(py_readme_file, 'r') as fp:
     68    long_description = ''.join(fp.readlines()[3:])
     69
    6570distrib = setup(name='aubio',
    6671    version = __version__,
     
    6974    ext_modules = [aubio_extension],
    7075    description = 'a collection of tools for music analysis',
    71     long_description = 'a collection of tools for music analysis',
     76    long_description = long_description,
    7277    license = 'GNU/GPL version 3',
    7378    author = 'Paul Brossier',
Note: See TracChangeset for help on using the changeset viewer.