Skip to content

Commit

Permalink
Setup.py updated
Browse files Browse the repository at this point in the history
  • Loading branch information
codeperfectplus committed May 31, 2024
1 parent 8f04432 commit ca75778
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions sanatio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from sanatio.main import Validator

__all__ = ['Validator']
Empty file added sanatio/utils/__init__.py
Empty file.
Empty file.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import setuptools
from glob import glob

with open("README.md", "r") as fh:
long_description = fh.read()
with open("README.md", "rb") as fh:
long_description = fh.read().decode("utf-8")

with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()

setuptools.setup(
name="Sanatio",
version="0.0.1",
version="1.0.0",
author="Deepak Raj",
author_email="[email protected]",
description="",
Expand Down

0 comments on commit ca75778

Please sign in to comment.