|
1 | | -from setuptools import setup, find_packages |
| 1 | +# Copyright 2015 Google Inc. All Rights Reserved. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | +# |
| 15 | +"""Configure and install the runtime package.""" |
2 | 16 |
|
3 | | -setup(name='python-runtime', |
| 17 | +from setuptools import find_packages |
| 18 | +from setuptools import setup |
| 19 | + |
| 20 | +setup(name='appengine-python-vm-runtime', |
4 | 21 | version='0.1', |
5 | 22 | description='Google App Engine-compatible Python runtime for Managed VMs', |
6 | 23 | url='https://github.com/GoogleCloudPlatform/appengine-python-vm-runtime', |
|
9 | 26 | classifiers=[ |
10 | 27 | 'Development Status :: 3 - Alpha', |
11 | 28 | 'Intended Audience :: Developers', |
12 | | - 'License :: OSI Approved :: MIT License', |
| 29 | + 'License :: OSI Approved :: Apache Software License', |
13 | 30 | 'Programming Language :: Python :: 2', |
14 | 31 | 'Programming Language :: Python :: 2.7', |
15 | 32 | ], |
16 | 33 | package_dir={'': 'python_vm_runtime', |
17 | 34 | 'google.appengine.vmruntime': 'multicore_runtime',}, |
18 | 35 | include_package_data=True, |
19 | | - packages=find_packages('python_vm_runtime') + ['google.appengine.vmruntime'], |
20 | | - # namespace_packages=['google'], # While google is a namespace, marking |
21 | | - # it as such makes the installer skip |
22 | | - # __init__.py, which breaks some |
23 | | - # packages expecting google to have |
24 | | - # a __file__ attribute. |
| 36 | + packages=find_packages('python_vm_runtime') + ['google.appengine.vmruntime'], # pylint: disable=line-too-long |
| 37 | + # namespace_packages=['google'], # This skips google/__init__.py |
25 | 38 | install_requires=['requests>=2.5.0', |
26 | 39 | 'webapp2>=2.5.2', |
27 | 40 | 'WebOb>=1.4', |
|
0 commit comments