Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
svaksha committed Sep 13, 2013
1 parent d959926 commit c93da36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# include CONTRIBUTORS.rst
include AUTHORS.rst
include LICENSE.rst
include MANIFEST.in
include README.rst
include requirements.txt
include setup.py
+recursive-include docs *
7 changes: 0 additions & 7 deletions ci/dependency.txt

This file was deleted.

12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
import os
import chaya

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

setup(name='chaya',
version = chaya.__version__,
description ='Learn computer vision, edge detection',
long_description = readme(),
author = 'SVAKSHA',
author_email = 'svaksha@gmail.com',
url = 'https://github.com/svaksha/chaya',
description ='Learn computer vision, edge detection',
long_description = open('README.rst').read()
packages = ['chaya'],
package_data={'chaya': ['LICENSE.rst']},
include_package_data=True,
package_data = {'chaya': ['LICENSE.rst']},
include_package_data = True,
install_requires = ['Cython==0.19.1',
'Pillow==2.1.0',
'distribute==0.6.34',
Expand Down

0 comments on commit c93da36

Please sign in to comment.