forked from davidselassie/canopener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 815 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 815 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
25
26
27
28
29
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from pkg_resources import resource_string
from setuptools import find_packages
from setuptools import setup
setup(
name='canopener',
version='0.1.5',
author='David Selassie',
author_email='selassid@gmail.com',
packages=find_packages(exclude=['tests']),
url='https://github.com/selassid/canopener',
license=open('LICENSE.txt').read(),
description=(
'Python convenience function for opening compressed URLs and files.'
),
keywords='open file s3 url bzip bz2 gzip gz',
include_package_data=True,
long_description=open('README.rst').read(),
setup_requires=['setuptools'],
install_requires=[
'boto',
'pystaticconfiguration',
],
)