Skip to content

Commit

Permalink
Add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaddeucci committed Aug 8, 2023
1 parent 97b74ff commit 99bcabb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# fluent_validator

Package to validate data in a fluent way
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import codecs
import os

from setuptools import setup

long_description = """
# Fluent Validator
here = os.path.abspath(os.path.dirname(__file__))

Package to validate data in a fluent way
"""
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\\n" + fh.read()

setup(
name="fluent_validator",
Expand Down

0 comments on commit 99bcabb

Please sign in to comment.