Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
tylern4 committed Mar 11, 2022
1 parent 267ff46 commit 33bd341
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@

_dir = Path(__file__).resolve().parent

with open(f"{_dir}/python/SuperfacilityAPI/README.md") as f:
long_desc = f.read()

with open(f"{_dir}/README.md") as f:
long_desc += """
long_desc = """
## Cli Docs
## Docs
"""
try:
Expand All @@ -22,11 +20,11 @@
long_desc += ""


if sys.version_info > (3,7,0):
install_requires=['authlib', 'requests', 'click', 'tabulate', 'pandas', 'numpy']
if sys.version_info > (3, 7, 0):
install_requires = ['authlib', 'requests', 'click', 'tabulate', 'pandas', 'numpy']
else:
print(sys.version_info)
install_requires=['authlib', 'requests', 'click']
install_requires = ['authlib', 'requests', 'click']
print(install_requires)

setup(
Expand All @@ -39,7 +37,7 @@
author_email="[email protected]",
packages=['SuperfacilityAPI'],
package_dir={'': 'python'},
version='0.0.3',
version='0.0.4',
scripts=['python/SuperfacilityAPI/bin/sfapi'],
install_requires=install_requires,
classifiers=[
Expand Down

0 comments on commit 33bd341

Please sign in to comment.