-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
31 lines (28 loc) · 990 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import numpy
from setuptools import setup, find_packages, Extension
extensions = [
Extension('fmpytorch.second_order.second_order_fast_inner',
["fmpytorch/second_order/second_order_fast_inner.c"],
include_dirs=[numpy.get_include()]),
]
setup(name="fmpytorch",
version="0.1",
description="A fast factorization machine in pytorch",
author="Jack Hessel",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
ext_modules=extensions,
install_requires=['numpy'],
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS']
)