Skip to content

Commit

Permalink
Merge pull request #29 from ibayer/create_binary
Browse files Browse the repository at this point in the history
Create binary
  • Loading branch information
ibayer committed Jan 16, 2016
2 parents 6380105 + 65e1349 commit e8cb282
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include README.rst
include fastFM/ffm.c
recursive-include fastFM-core/include *
include fastFM-core/bin/libfastfm.a
include fastFM-core/externals/CXSparse/Lib/libcxsparse.a
recursive-include fastFM-core/externals/CXSparse/Include *
recursive-include fastFM-core/externals/CXSparse/SuiteSparse_config *
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
44 changes: 42 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,48 @@
name = 'fastFM',
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules,

packages=['fastFM'],
version='0.1.1',

version='0.2.0',
url='http://ibayer.github.io/fastFM',
author='Immanuel Bayer',
author_email='[email protected]'
author_email='[email protected]',

# Choose your license
license='BSD',

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',

'License :: OSI Approved :: BSD License',
'Operating System :: Unix',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],

# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['numpy', 'scikit-learn', 'scipy']
)

0 comments on commit e8cb282

Please sign in to comment.