Skip to content

Commit

Permalink
feat: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bedram Tamang committed Jan 28, 2024
1 parent 49ebdf9 commit 742a935
Show file tree
Hide file tree
Showing 8 changed files with 423 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
on:
jobs:
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.idea
python_dd.egg-info
dist
build
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ name = "pypi"
pytest = "*"

[dev-packages]
twine = "*"
393 changes: 391 additions & 2 deletions Pipfile.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rm -f -r dist/*
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.dd import dump, dd
from python_dd.dd import dd, dump


class Permission:
Expand Down
File renamed without changes.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

with open("readme.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="python_dd",
version="0.0.14",
author="Bedram Tamang",
author_email="tmgbedu@gmail.com",
description="The missing `dd` function in python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bedus-creation/python_dd",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
)

0 comments on commit 742a935

Please sign in to comment.