Skip to content

Commit

Permalink
Configuration setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hadpro24 committed Apr 28, 2021
1 parent 7ce96d6 commit 3e4f8e2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE
include README.md
recursive-include forms_fieldset/static *
recursive-include forms_fieldset/templates *
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup
from os import path

# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='image-pdf-tools',
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 3e4f8e2

Please sign in to comment.