Skip to content

Commit 0b3e5a5

Browse files
committed
Merge pull request tobami#133 from tobami/fix-pip-install
Fix pip install Fixes tobami#132
2 parents 26b37c5 + 93eb8fc commit 0b3e5a5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include README.md
22
include LICENSE
3-
recursive-include codespeed/templates/codespeed/ *
4-
recursive-include codespeed/static/ *
3+
recursive-include codespeed/templates/codespeed *
4+
recursive-include codespeed/static *

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A web application to monitor and analyze the performance of your code.
44

5-
Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twistedmatrix.com), [RubySpec](http://speed.rubyspec.org/) and many more.
5+
Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twistedmatrix.com), [RubySpec](http://speed.rubyspec.org) and many more.
66

77
For an overview of some application concepts see the [wiki page](https://github.com/tobami/codespeed/wiki/Overview)
88

@@ -35,7 +35,7 @@ can take a long time. Please be patient.
3535
# Installation
3636

3737
* Download the last stable release from
38-
[http://github.com/tobami/codespeed/downloads](http://github.com/tobami/codespeed/downloads), unpack it and install it with `python setup.py install`.
38+
[github.com/tobami/codespeed/tags](https://github.com/tobami/codespeed/tags), unpack it and install it with `python setup.py install`.
3939
* To get started, you can use the `sample_project` directory as a starting point for your Django project, which can be normally configured by editing `sample_project/settings.py`.
4040
* For simplicity, you can use the default sqlite configuration, which will save
4141
the data to a database named `sample_project/data.db`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
url='https://github.com/tobami/codespeed',
99
license='GNU Lesser General Public License version 2.1',
1010
install_requires=['django>=1.3', 'isodate', 'south', 'django-tastypie'],
11-
packages=find_packages(exclude=['ez_setup', 'example']),
11+
packages=find_packages(exclude=['ez_setup', 'sample_project']),
1212
description='A web application to monitor and analyze the performance of your code',
1313
include_package_data=True,
1414
zip_safe=False,

0 commit comments

Comments
 (0)