forked from mkaykisiz/DjangoS3Browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 629 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
setup(
name='DjangoS3Browser',
version='0.3',
packages=['djangoS3Browser', 'djangoS3Browser.s3_browser',
'djangoS3Browser.templatetags'],
include_package_data=True,
description='S3 browser for django',
long_description=README,
author='mkaykisiz',
author_email='m.kaykisiz@gmail.com',
url='https://github.com/mkaykisiz/DjangoS3Browser',
license='MIT',
install_requires=[
'Django>=1.9',
'boto3>=1.4.6',
]
)