-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 717 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='xport',
version='0.1.0',
author=u'Jack Cushman',
author_email='jcushman@gmail.com',
packages=find_packages(),
url='https://github.com/jcushman/xport',
license='MIT',
description='SAS XPORT data file reader.',
keywords='sas xport',
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)