-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from __future__ import division, absolute_import, print_function,\
unicode_literals
import sys
from distutils.core import setup
if sys.version_info < (2, 6):
print("Sorry, this module only works on 2.6+, 3+")
sys.exit(1)
setup(name='sas7bdat',
version='2.0.4',
author='Jared Hobbs',
author_email='[email protected]',
license='MIT',
url='https://bitbucket.org/jaredhobbs/sas7bdat',
description='A sas7bdat file reader for Python',
py_modules=['sas7bdat'],
scripts=['scripts/sas7bdat_to_csv'],
install_requires=['six>=1.8.0'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Utilities',
],
keywords=['sas', 'sas7bdat', 'csv', 'converter'])