Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | typo in setup.py |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a0021d0f332f3df426ed28b884158f00 |
User & Date: | jmcclure 2017-09-04 21:09:46 |
Context
2017-09-05
| ||
01:35 | typo check-in: 159d5285a1 user: jmcclure tags: trunk, v1.0.0rc5 | |
2017-09-04
| ||
21:09 | typo in setup.py check-in: a0021d0f33 user: jmcclure tags: trunk | |
21:00 | v1.0.0rc5 check-in: 3caababc81 user: jmcclure tags: trunk | |
Changes
Changes to setup.py.
1 2 3 4 5 6 7 8 9 10 | from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup( name='tweetypy', version='1.0.0rc5', | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from setuptools import setup def readme(): with open('README.rst') as f: return f.read() setup( name='tweetypy', version='1.0.0rc5', description='Bird song analysis tools', long_description=readme(), classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', 'Intended Audience :: Science/Research', 'Programming Language :: Python :: 3', 'Topic :: Multimedia :: Sound/Audio :: Analysis', |
︙ | ︙ |