-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue where we could not import sopy when installing from PyPi
- Loading branch information
1 parent
0b1ebb1
commit 2196110
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from sopy import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|