-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.41 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
test_reqs = ["pytest", "pytest-docker-fixtures", "pytest-aiohttp>=0.3.0"]
setup(
name="guillotina_gcloudstorage",
version=open("VERSION").read().strip(),
description="guillotina gcloud storage support",
long_description=(open("README.rst").read() + "\n" + open("CHANGELOG.rst").read()),
long_description_content_type="text/x-rst",
classifiers=[
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author="Ramon Navarro Bosch",
author_email="[email protected]",
keywords="guillotina async cloud storage",
url="https://pypi.python.org/pypi/guillotina_gcloudstorage",
license="GPL version 3",
setup_requires=["pytest-runner",],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
package_data={"": ["*.txt", "*.rst"], "guillotina_gcloudstorage": ["py.typed"]},
install_requires=[
"setuptools",
"guillotina>=5.3.48",
"protobuf",
"oauth2client",
"google-cloud-storage",
"gcloud",
"ujson",
"backoff",
"async-lru",
"zope-interface<6,>=5.0.0"
],
extras_require={"test": test_reqs},
tests_require=test_reqs,
entry_points={"guillotina": ["include = guillotina_gcloudstorage",]},
)