Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@
import os
import codecs
from glob import glob
import sys



def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), "r") as fp:
return fp.read()


def origin(user_name , passeword):

value1 = user_name + 'Hello'
passeword1 = passeword + 'Tmam'

print(value1 , passeword1)


def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith("__version__"):
Expand Down