Metadata-Version: 2.1
Name: smart-append-path
Version: 0.0.1
Summary: A small import package
Home-page: https://github.com/lua511/py_smart_append_path.git
Author: duanping
Author-email: liuan.yla@alibaba-inc.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# 1
may,use like this

# 2
```
dir1:
    file1.py
dir2:
    file2.py
```

# 3
file2.py:

```
import file1
```

# 4
python dir2/file2.py

you will got: ERROR,ERROR,ERROR ...

# 5

file2.py

```
if __name__ == '__main__':
    import smart_append_path
    smart_append_path.append_top1(__file__)
```


