Skip to content

Commit

Permalink
Merge pull request #6 from jhrdt/update-readme-with-build-instructions
Browse files Browse the repository at this point in the history
Update readme with build instructions
  • Loading branch information
Deekshith Anand authored Oct 7, 2020
2 parents 82ccb15 + 9e05615 commit 927fed3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
recursive-include flask_template *
recursive-include flask_create *.py
include LICENSE
include README.md
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,21 @@ To int db run this from outside src(i.e., root project folder):

##### Note : - The default config is provided for dev. Production config can be modified by user in config.py


# Build Instructions

Build a python package:

```
python3 -m venv venv
source venv/bin/activate
pip install wheel
python setup.py bdist_wheel
# Produces a .whl file in dist/
```

# Note for Contributing

We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,4 @@
'console_scripts': ['flask-create=flask_create.create:create'],
},
include_package_data=True,

)

0 comments on commit 927fed3

Please sign in to comment.