Skip to content

Commit b6f63f9

Browse files
committed
Version 0.1.0
Initial PyPI release.
1 parent 4d3c86f commit b6f63f9

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ matrix:
1515
- python: "3.5-dev"
1616
- python: "nightly"
1717
- python: pypy
18+
addons:
19+
apt:
20+
packages:
21+
- libatlas-base-dev
22+
- liblapack-dev
1823
branches:
1924
only:
2025
- master

HISTORY.rst

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v0.1.0 (2016-02-09)
2+
===================
3+
- Initial release

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ approximating the shape of the contour::
2626
from pyefd import elliptic_fourier_descriptors
2727
coeffs = elliptic_fourier_descriptors(contour, order=10)
2828
29-
The coefficients returned are the `a_n`, `b_n`, `c_n` and `d_n` of
29+
The coefficients returned are the ``a_n``, ``b_n``, ``c_n`` and ``d_n`` of
3030
the following Fourier series representation of the shape.
3131

3232
The coefficients returned are by default normalized so that they are
@@ -46,8 +46,8 @@ To use these as features, one can write a small wrapper function::
4646
coeffs = elliptic_fourier_descriptors(contour, order=10, normalize=True)
4747
return coeffs.flatten()[3:]
4848

49-
If the coefficients are normalized, then `coeffs[0, 0] = 1.0`,
50-
`coeffs[0, 1] = 0.0` and `coeffs[0, 2] = 0.0`, so they can be disregarded when using
49+
If the coefficients are normalized, then ``coeffs[0, 0] = 1.0``,
50+
``coeffs[0, 1] = 0.0`` and ``coeffs[0, 2] = 0.0``, so they can be disregarded when using
5151
the elliptic Fourier descriptors as features.
5252

5353
See \[1\] for more technical details.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
sys.exit()
3131

3232

33-
version = '0.1.0.dev1'
33+
version = '0.1.0'
3434
requires = ["numpy>=1.7.0"]
3535

3636

@@ -52,7 +52,7 @@ def read(f):
5252
'Operating System :: OS Independent',
5353
'Intended Audience :: Science/Research',
5454
'Intended Audience :: Developers',
55-
'License :: MIT',
55+
'License :: OSI Approved :: MIT License',
5656
'Topic :: Software Development',
5757
'Topic :: Scientific/Engineering',
5858
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)