-
Notifications
You must be signed in to change notification settings - Fork 100
/
setup.py
44 lines (39 loc) · 1.25 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
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
"""Installer for this package."""
from setuptools import setup
from setuptools import find_packages
import os
# shamlessly stolen from Hexagon IT guys
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.2dev'
setup(name='glacier',
version=version,
description="Command line interface for Amazon Glacier",
long_description=read('README.md')+read("LICENSE"),
classifiers=[
"Programming Language :: Python",
],
keywords='amazon glacier cmd cli command line interface command-line',
author='Urban Škudnik, Jaka Hudoklin',
author_email='urban.skudnik@gmail.com',
url='https://github.com/uskudnik/amazon-glacier-cmd-interface',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
dependency_links =
["https://github.com/boto/boto/tarball/develop#egg=boto-2.5.9999"],
install_requires=[
# list project dependencies
'boto',
'python-dateutil',
'pytz',
'argparse',
'prettytable'
],
entry_points="""
[console_scripts]
glacier-cmd = glacier.glacier:main
""",
)