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
import os
from setuptools import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
@ -37,4 +40,4 @@ setup(
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
)