This commit is contained in:
2016-02-11 19:23:29 -05:00
parent 29914ade6d
commit d98b3fff7d
2 changed files with 23 additions and 12 deletions
+6 -4
View File
@@ -3,7 +3,6 @@
import os
import re
import sys
from codecs import open
from setuptools import setup
@@ -15,8 +14,8 @@ if sys.argv[-1] == 'publish':
os.system('python setup.py bdist_wheel upload --universal')
sys.exit()
requires = ['psycopg2', 'tablib']
version = '0.2.0'
requires = ['psycopg2', 'tablib', 'docopt']
version = '0.3.0'
def read(f):
return open(f, encoding='utf-8').read()
@@ -32,6 +31,9 @@ setup(
py_modules=['records'],
package_data={'': ['LICENSE']},
include_package_data=True,
entry_points = {
'console_scripts': ['records=records:cli'],
},
install_requires=requires,
license='ISC',
zip_safe=False,
@@ -39,7 +41,7 @@ setup(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',