Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packaged project using the flit build system #121

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Packaged project using the flit build system
  • Loading branch information
IvanUniTO committed Jul 20, 2023
commit 3db00b6bd9972f55147ca5652c9d704adcbc1b4d
2 changes: 1 addition & 1 deletion auton_survival/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ class is a composite transform that does both Imputing ***and*** Scaling with

'''

__version__ = "0.1.0"
__version__ = "1.0.0"


from .models.dsm import DeepSurvivalMachines
Expand Down
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[project]
name = "auton_survival"
version = "1.0.0"
description = "The auton-survival package contains reusable utilities for projects involving censored Time-to-Event Data. "
authors = [
{ name = "Chirag Nagpal", email = "chiragn@cs.cmu.edu" }
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"torch>=1.0.0",
"numpy>=1.16.5",
"pandas>=1.0.0",
"tqdm>=4.0.0",
"scikit-learn>=0.18",
"torchvision>=0.7.0",
"scikit-survival>=0.15.0",
"lifelines>=0.26.4",
]

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"