-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
opioidabusepredictor is a Python package
- Loading branch information
Showing
4 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Opioid_Abuse_Predictor | ||
Contains project Opioid-Abuse Predictor | ||
|
||
Contains project and Python package Opioid-Abuse Predictor | ||
|
||
For information on creating this Python package, see https://packaging.python.org/en/latest/tutorials/packaging-projects/ . Follow instructions before `python3 -m build`. Install this package by navigating to the root directory of this package and running `pip install .`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "opioidabusepredictor" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Tom Lever", email="[email protected]" }, | ||
] | ||
description = "Contains Python utilities for Opioid_Abuse_Predictor" | ||
readme = "README.md" | ||
requires-python = ">=3.7.12" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/tslever/Opioid_Abuse_Predictor" | ||
"Bug Tracker" = "https://github.com/tslever/Opioid_Abuse_Predictor/issues" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Hello World! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print("Hello World!") |