forked from alexeygrigorev/libffm-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 653 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
# Please use setup_pip.py for generating and deploying pip installation
# detailed instruction in setup_pip.py
setup(name='ffm',
version='7e8621d',
description="LibFFM Python Package",
long_description="LibFFM Python Package",
install_requires=[
'numpy',
],
maintainer='',
maintainer_email='',
zip_safe=False,
packages=['ffm'],
package_data={'ffm': ['libffm.so']},
include_package_data=True,
license='BSD 3-clause',
classifiers=['License :: OSI Approved :: BSD 3-clause'],
url='https://github.com/alexeygrigorev/libffm-python'
)