Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added setup.py file so that we can install 'q' directly from git or pypi... #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import os
from distutils.core import setup

here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.markdown'))
long_description = f.read()
f.close()


setup(name='q',
version='1.5.0',
description='Run SQL directly on CSV or TSV files',
long_description=long_description,
author='Harel Ben-Attia',
author_email='harelba [at] gmail.com,',
url='https://github.com/harelba/q',
# license='MIT license', - not specified yet
platforms=['unix', 'linux', 'cygwin', 'win32'],
scripts=['bin/q'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
# 'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
# 'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
],)