-
Notifications
You must be signed in to change notification settings - Fork 241
/
setup.py
46 lines (43 loc) · 1.67 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
40
41
42
43
44
45
46
from pathlib import Path
from setuptools import find_packages, setup
cur_dir = Path(__file__).absolute().parent
long_description = (cur_dir / "README.md").read_text(encoding="utf-8")
version = (cur_dir / "m2cgen" / "VERSION.txt").read_text(encoding="utf-8").strip()
setup(
name="m2cgen",
version=version,
url="https://github.com/BayesWitnesses/m2cgen",
description="Code-generation for various ML models into native code.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(exclude=["tests.*", "tests", "tools"]),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords=("sklearn statsmodels lightning xgboost lightgbm "
"machine-learning ml regression classification "
"transpilation code-generation"),
python_requires=">=3.7",
install_requires=[
"numpy",
],
entry_points={
"console_scripts": [
"m2cgen = m2cgen.cli:main",
],
}
)