-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (31 loc) · 896 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
__email__ = "[email protected]"
__license__ = "GPL"
__copyright__ = "Copyright 2015, Chelsea Urquhart"
__author__ = "Chelsea Urquhart"
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
requires = [
'pyrax==1.9.5',
'boto3==1.1.4',
]
setup(
name='Threaded Object Deleter',
version="2.0.1",
author=__author__,
author_email=__email__,
description='A lightweight, extremely fast deleter for various objects.',
license=__license__,
keywords='cloudfiles threading',
url='https://github.com/chelseau/threadedobjectdeleter',
packages=find_packages(),
long_description=README,
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
],
install_requires=requires,
)