-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (61 loc) · 1.71 KB
/
setup.py
File metadata and controls
65 lines (61 loc) · 1.71 KB
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
62
63
64
65
import os.path as osp
from setuptools import setup, find_packages
cdir = osp.abspath(osp.dirname(__file__))
README = open(osp.join(cdir, 'README.rst')).read()
CHANGELOG = open(osp.join(cdir, 'changelog.rst')).read()
version = {}
with open(osp.join(cdir, 'keg_storage', 'version.py')) as version_fp:
exec(version_fp.read(), version)
setup(
name="KegStorage",
description="A simple storage interface with multiple backends for use in a Keg app.",
long_description='\n\n'.join((README, CHANGELOG)),
author="Level 12 Developers",
author_email="devteam@level12.io",
url='https://github.com/level12/keg-storage',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
license='BSD',
package_data={'keg_storage': ['py.typed']},
packages=find_packages(),
zip_safe=False,
version=version['VERSION'],
install_requires=[
'arrow',
'authlib',
'humanize',
'BlazeUtils',
],
extras_require={
'sftp': [
'paramiko',
],
'aws': [
'boto3',
],
'azure': [
'azure-storage-blob>=12.6.0',
],
'keg': [
'kegelements',
],
'test': [
'azure-storage-blob>=12.6.0',
'boto3',
'flake8',
'flask_webtest',
'freezegun',
'paramiko',
'pytest',
'pytest-coverage',
'tox',
'wrapt',
]
}
)