-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
61 lines (54 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
from setuptools import setup, find_packages
from snaptastic import __version__, __maintainer__, __email__
DESCRIPTION = """Snaptastic is a python tool to enable easy snapshotting
and mounting of snapshots on AWS/EC2 EBS volumes.
"""
tests_require = [
'mock',
'pep8',
'coverage',
'unittest2',
]
install_requires = [
'boto>=2.10.0',
'argh',
'argparse',
'dateutils==0.6.6',
'pytz==2013b',
]
license_text = open('LICENSE.txt').read()
long_description = open('README.md').read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='snaptastic',
version=__version__,
author=__maintainer__,
author_email=__email__,
license=license_text,
url='http://github.com/tschellenbach/Snaptastic',
description=DESCRIPTION,
long_description=long_description,
packages=find_packages(exclude=("tests",)),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='snaptastic.tests',
include_package_data=True,
classifiers=CLASSIFIERS,
entry_points={
'console_scripts': [
'snaptastic = snaptastic.cli:main',
]
},
)