Skip to content

Commit

Permalink
opioidabusepredictor is a Python package
Browse files Browse the repository at this point in the history
  • Loading branch information
tslever committed Jul 15, 2023
1 parent b8aa6a7 commit 1525a83
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
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 .`.
22 changes: 22 additions & 0 deletions pyproject.toml
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"
1 change: 1 addition & 0 deletions src/opioidabusepredictor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World!
1 change: 1 addition & 0 deletions src/opioidabusepredictor/queries.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World!")

0 comments on commit 1525a83

Please sign in to comment.