Skip to content

Commit

Permalink
Fix packaging issue: #24
Browse files Browse the repository at this point in the history
  • Loading branch information
GokulNC committed Nov 17, 2021
1 parent ab5691e commit 40109e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
Check the documentation on how to use the library:
**[ReadTheDocs: 馃憪OpenHands](https://openhands.readthedocs.io)**

## Installation

- For stable version: `pip install --upgrade OpenHands`
- For latest development version: `pip install git+https://github.com/AI4Bharat/OpenHands`

## License

This project is released under the [Apache 2.0 license](LICENSE.txt).
Expand Down
2 changes: 1 addition & 1 deletion openhands/__version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.3'
__version__ = '0.1.4'
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pathlib
from setuptools import setup, find_packages
import setuptools
import pkg_resources

# The directory containing this file
Expand All @@ -20,7 +20,7 @@
exec(open('openhands/__version.py').read(), about)

# Install
setup(
setuptools.setup(
name="OpenHands",
version=about["__version__"],
description="馃憪OpenHands : Making Sign Language Recognition Accessible",
Expand All @@ -34,8 +34,9 @@
'Documentation': "https://openhands.readthedocs.io",
},
author="AI4Bh膩rat",
packages=["openhands"],
# packages=find_packages(exclude=("tests",)),
# packages=["openhands"],
packages=setuptools.find_packages(),
# packages=setuptools.find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=install_requires,
classifiers=[
Expand Down

0 comments on commit 40109e8

Please sign in to comment.