Skip to content

Commit

Permalink
trying to fix readthedocs v2
Browse files Browse the repository at this point in the history
  • Loading branch information
tabacof committed Dec 6, 2023
1 parent fc9bb96 commit db111c9
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.11"
rust: "1.70"
commands:
- pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
from setuptools import find_packages, setup

setup(
name="rustrees",
version="0.2.0",
description="Efficient decision tree and random forest library written in Rust with Python bindings",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Pedro Tabacof, Guilherme Lázari",
author_email="[email protected], [email protected]",
url="https://github.com/tabacof/rust-trees",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy>=1.0",
"pandas>=2.0",
"scikit-learn>=1.0",
"pyarrow>=12.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.6",
setup_requires=["maturin>=1.0,<2.0"],
zip_safe=False,
project_urls={
"Documentation": "https://rust-trees.readthedocs.io/en/latest/",
"Rust Package": "https://crates.io/crates/rustrees",
},
)

0 comments on commit db111c9

Please sign in to comment.