-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
45 lines (41 loc) · 1.47 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
import codecs
import setuptools
import sys
long_description = codecs.open('README.rst', "r").read()
# Conditional load of enumeration
# See https://hynek.me/articles/conditional-python-dependencies/
INSTALL_REQUIRES = [
"google-api-python-client >= 1.8.2",
"google-auth >= 1.28.0,<2",
"python-dateutil >= 2.5.3",
"Django >= 2.2"
]
setuptools.setup(
name="django-googledrive-storage",
version="1.6.0",
author="Gian Luca Dalla Torre",
author_email="[email protected]",
description=(
"Storage implementation for Django that interacts with Google Drive"),
license="LICENSE.txt",
keywords="django google drive storage googledrive",
url="https://github.com/torre76/django-googledrive-storage",
download_url="https://github.com/torre76/django-googledrive-storage/tarball/1.6.0",
packages=setuptools.find_packages(
exclude=["django_googledrive_storage", "gdstorage.tests", "docs"]),
long_description=long_description,
package_data={
'': ['README.rst'],
},
install_requires=INSTALL_REQUIRES,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
)