-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
74 lines (60 loc) · 1.77 KB
/
setup.py
File metadata and controls
74 lines (60 loc) · 1.77 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import io
from setuptools import setup, find_packages
with io.open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='wide-product',
version='0.1.1',
url='https://github.com/thread/wide-product',
description="Wide (partial Khatri-Rao) sparse matrix product",
long_description=long_description,
author="Thread Tech",
author_email="tech@thread.com",
keywords=[
'numpy',
'scipy',
'matrix',
'sparse',
'khatri-rao',
'product',
'science',
'feature',
'courgette',
],
license='MIT',
zip_safe=False,
packages=find_packages(),
cffi_modules=['build_wide.py:ffibuilder'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
],
python_requires='>=3.7',
install_requires=(
'cffi',
'numpy',
'scipy',
),
setup_requires=(
'cffi >=1.10',
),
tests_require=(
'pytest',
'hypothesis',
),
)