Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:v1.0.0rc5
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3caababc811266ecf42e21566f96ca91ea9da1a203d6162b4aea482ad851b505
User & Date: jmcclure 2017-09-04 21:00:24
Context
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
16:23
grammatical touch-ups check-in: 513b009d23 user: jmcclure tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to info.html.

20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<p>As it became clear that this program, formerly known as Fex, would be useful
for doing more than just frequency excursion calculations it became worth
considering new names.  The goal was for a fun name that would be immediately
recognizable as a bird while also potentially referencing the heritage of the
Python language in which the software was written<a class="note-link"
href="#intro-note-5">5</a>.  This lead to Tweety Bird<a class="note-link"
href="#intro-note-6">6</a> also known as Tweety Pie.  Hence the name TweetyPy.
Each major release of TweetyPy will have a codename from the title of a Tweety
Bird short.
</p>
<ol class="notes">
<li id="intro-note-1">Podos J, Moseley DL, Goodwin SE, McClure J, Taft BN,
Strauss AV, Rega-Brodsky C, Lahti DC. A fine-scale, broadly applicable index of
vocal performance: frequency excursion. <em>Animal Behaviour</em>. 2016 Jun
30;116:203-12.
(<a href="http://www.sciencedirect.com/science/section/pii/S0003347216300100">link</a>)







|
|







20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<p>As it became clear that this program, formerly known as Fex, would be useful
for doing more than just frequency excursion calculations it became worth
considering new names.  The goal was for a fun name that would be immediately
recognizable as a bird while also potentially referencing the heritage of the
Python language in which the software was written<a class="note-link"
href="#intro-note-5">5</a>.  This lead to Tweety Bird<a class="note-link"
href="#intro-note-6">6</a> also known as Tweety Pie.  Hence the name TweetyPy.
Each minor-version release of TweetyPy will have a codename from the title of a
Tweety Bird short.
</p>
<ol class="notes">
<li id="intro-note-1">Podos J, Moseley DL, Goodwin SE, McClure J, Taft BN,
Strauss AV, Rega-Brodsky C, Lahti DC. A fine-scale, broadly applicable index of
vocal performance: frequency excursion. <em>Animal Behaviour</em>. 2016 Jun
30;116:203-12.
(<a href="http://www.sciencedirect.com/science/section/pii/S0003347216300100">link</a>)
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Fossil with the following command from within the top-level directory of the
source files:</p>
<pre><code>python setup.py install</code></pre>
<p>In either case <code>setuptools</code> should install the remaining
depdendencies numpy<a class="note-link" href="#install-note-5">5</a>,
scipy<a class="note-link" href="#install-note-6">6</a>, and
PyYAML<a class="note-link" href="#install-note-7">7</a>.  If not, these may need
to be installed directly.</p>
<h3>Windows</h3>
<p>TweetyPy should currently run without issue on Windows, however, this has not
yet been tested. Windows-specific details will be coming soon.</p>
<h3>Mac OSX</h3>
<p>TweetyPy should currently run without issue on OSX, however, this has not
yet been tested. Mac-specific details will be coming very soon.</p>
<h3>Linux</h3>







|







90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Fossil with the following command from within the top-level directory of the
source files:</p>
<pre><code>python setup.py install</code></pre>
<p>In either case <code>setuptools</code> should install the remaining
depdendencies numpy<a class="note-link" href="#install-note-5">5</a>,
scipy<a class="note-link" href="#install-note-6">6</a>, and
PyYAML<a class="note-link" href="#install-note-7">7</a>.  If not, these may need
to be installed separately.</p>
<h3>Windows</h3>
<p>TweetyPy should currently run without issue on Windows, however, this has not
yet been tested. Windows-specific details will be coming soon.</p>
<h3>Mac OSX</h3>
<p>TweetyPy should currently run without issue on OSX, however, this has not
yet been tested. Mac-specific details will be coming very soon.</p>
<h3>Linux</h3>

Changes to packaging/PKGBUILD.

1
2
3
4
5
6
7
8
9
10
# Maintainer: Jesse McClure <info at jessemcclure dot org>
pkgname=tweetypy
pkgver=1.0.0rc4
pkgrel=1
pkgdesc="Frequency excursion calculator for quantifying performance of bird song"
arch=('any')
url="http://repo.jessemcclure.org/tweetypy"
license=('MIT')
depends=('python' 'python-setuptools' 'python-pyqt5' 'python-numpy' 'python-scipy')
source=("${pkgname}::http://repo.jessemcclure.org/${pkgname}/tarball?r=${pkgver}")


|







1
2
3
4
5
6
7
8
9
10
# Maintainer: Jesse McClure <info at jessemcclure dot org>
pkgname=tweetypy
pkgver=1.0.0rc5
pkgrel=1
pkgdesc="Frequency excursion calculator for quantifying performance of bird song"
arch=('any')
url="http://repo.jessemcclure.org/tweetypy"
license=('MIT')
depends=('python' 'python-setuptools' 'python-pyqt5' 'python-numpy' 'python-scipy')
source=("${pkgname}::http://repo.jessemcclure.org/${pkgname}/tarball?r=${pkgver}")

Changes to setup.py.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

from setuptools import setup

def readme():
	with open('README.rst') as f:
		return f.read()

setup(
	name='tweetypy',
	version='1.0.0rc4',
	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',









|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

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