forked from BayesWitnesses/m2cgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.31 KB
/
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
32
33
34
35
36
37
38
39
from setuptools import find_packages, setup
setup(
name="m2cgen",
version="0.3.2",
url="https://github.com/BayesWitnesses/m2cgen",
description="Code-generation for various ML models into native code.",
license="MIT",
packages=find_packages(exclude=["tests.*", "tests"]),
package_data={
"": ["linear_algebra.java", "linear_algebra.c", "linear_algebra.go",
"linear_algebra.js"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
],
keywords="sklearn ml code-generation",
python_requires="!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=[
"numpy",
"scipy",
"scikit-learn",
],
entry_points={
"console_scripts": [
"m2cgen = m2cgen.cli:main",
],
}
)