Skip to content

Commit

Permalink
MANIFEST and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jaberg committed Jun 21, 2012
1 parent a7a1b19 commit 5d9da68
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include *.txt
recursive-include skdata *.txt *.py *.csv

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ nose>=1.0
numpy
joblib
lockfile
scikit-learn
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
URL = 'http://jaberg.github.com/skdata/'
LICENSE = 'new BSD'
DOWNLOAD_URL = 'https://github.com/jaberg/skdata/tarball/master'
VERSION = '0.0.2'
VERSION = '0.0.3'

import setuptools # we are using a setuptools namespace
from numpy.distutils.core import setup
Expand Down Expand Up @@ -78,14 +78,11 @@
download_url=DOWNLOAD_URL,
long_description=LONG_DESCRIPTION,
zip_safe=True, # the package can run out of an .egg file
install_requires=[
'numpy>=1.3.0',
'sklearn',
# 'glumpy>=0.1.0', # -- optional
],
install_requires=open('requirements.txt').read().split('\n'),
scripts=glob.glob(os.path.join("bin","*")),
package_data={
'': ['*.txt', '*.rst', '*.cu', '*.cuh', '*.c', '*.sh']
'': ['*.txt', '*.rst', '*.cvs', 'skdata/iris/iris.csv', 'iris/*.csv'],
'skdata': ['iris/*.csv'],
},
classifiers=[
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 5d9da68

Please sign in to comment.