-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.1 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.1 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='pserver.gcloudstorage',
version=open('VERSION').read().strip(),
long_description=(open('README.rst').read() + '\n' +
open('CHANGELOG.rst').read()),
classifiers=[
'Framework :: Plone :: 7.0',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url='https://pypi.python.org/pypi/pserver.gcloudstorage',
license='GPL version 3',
setup_requires=[
'pytest-runner',
],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['pserver'],
install_requires=[
'setuptools',
'plone.server',
'protobuf',
'oauth2client',
'google-api-python-client',
'google-cloud-storage',
'gcloud',
'ujson',
],
tests_require=[
'pytest',
],
entry_points={
'plone.server': [
'include = pserver.gcloudstorage',
]
}
)