Skip to content

Commit

Permalink
update to ver 0.0.3 and fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
thedtvn committed Aug 5, 2023
1 parent 5da0dbf commit 9c31290
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import re
import os
from setuptools import setup

with open("./req.txt", "r") as f:
print(os.listdir("."))

with open("req.txt", "r") as f:
req = f.read().splitlines()

with open("./README.MD", "r") as f:
with open("README.MD", "r") as f:
ldr = f.read()

with open('./mbbank/__init__.py') as f:
with open('mbbank/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)

setup(
Expand Down

0 comments on commit 9c31290

Please sign in to comment.