-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 1.11 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
from setuptools import setup, find_packages
setup(
name="lgbm-to-code", # Your package name
version="0.3.0",
author="Daniel Gaskins",
author_email="hello@danielgaskins.com",
description="Generate dependency-free Python, C++, or JavaScript raw-score inference from trained LightGBM models.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/danielgaskins/lgbm-to-code", # Your package repository URL
project_urls={
"Creator": "https://danielgaskins.com/",
"Case Study": "https://danielgaskins.com/lightgbm-model-to-code.html",
"Source": "https://github.com/danielgaskins/lgbm-to-code",
},
packages=find_packages(), # Automatically finds and includes your package modules
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
install_requires=[
"lightgbm>=4.0"
],
extras_require={
"test": ["numpy>=1.23", "pytest>=7"],
},
)