Skip to content

Commit

Permalink
Setup distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinFrizzell committed Nov 12, 2023
1 parent 277c704 commit b1c9c78
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
build/
dist/
*.egg-info/
.env
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ pyyaml = "*"
pyodbc = "*"

[dev-packages]
setuptools = "*"
wheel = "*"
23 changes: 21 additions & 2 deletions Pipfile.lock

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

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

setuptools.setup(
name="SQLconnect",
version="0.0.1",
description=""" Package to simplify connections to SQL databases. """,
long_description=Path("README.md").read_text(encoding="utf=8"),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=["pandas", "sqlalchemy", "pyyaml", "pyodbc"],
)

0 comments on commit b1c9c78

Please sign in to comment.