Skip to content

Commit

Permalink
Fixed packaging
Browse files Browse the repository at this point in the history
Fixed issue where we could not import sopy when installing from PyPi
  • Loading branch information
AakashSasikumar committed Sep 13, 2020
1 parent 0b1ebb1 commit 2196110
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from sopy import *
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from setuptools import setup, find_packages
from setuptools import setup

from os import path
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='sopy',
version='1.2',
version='1.3',
description='A neat way to write SOPs using python',
url='https://github.com/AakashSasikumar/SOPy',
author='Aakash Sasikumar and Sourav Johar',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
packages=["./"],
install_requires=[
"jinja2",
"beautifulsoup4",
Expand Down

0 comments on commit 2196110

Please sign in to comment.