mirror of
https://github.com/kennethreitz/records.git
synced 2026-06-05 06:46:17 +00:00
v0.3.0
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user