Merge branch 'master' of github.com:CiCiApp/PyInvoice

This commit is contained in:
zhangshine 2015-06-11 21:06:42 +08:00
commit 230452b590

View file

@ -1,7 +1,10 @@
#!/usr/bin/env python #!/usr/bin/env python
import os import os
try:
from setuptools import setup from setuptools import setup
except ImportError:
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: