Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
fix setup to install lib correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
vivianyamassaki committed Jul 8, 2021
1 parent 27f7076 commit 8636e94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
with open("README.md", "r") as readme_file:
long_description = readme_file.read()

VERSION = "0.1.1"
VERSION = "0.1.2"

class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
Expand All @@ -24,8 +24,7 @@ def run(self):
setup(
name='galeritas',
version=VERSION,
packages=find_packages(where='galeritas'),
package_dir={'': 'galeritas'},
packages=find_packages(),
python_requires='>=3.6.9',
install_requires=[
'numpy>=1.15',
Expand Down

0 comments on commit 8636e94

Please sign in to comment.