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: a0021d0f332f3df426ed28b884158f001b35a230b3fb671755a92ad9dfd8ec90
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
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to setup.py.

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',










|







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',