File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88* .egg
99* .egg-info
1010dist
11+ * /setup_base
1112build
1213eggs
1314parts
Original file line number Diff line number Diff line change 2525
2626# NOTE: This is duplicated throughout and we should try to
2727# consolidate.
28- SETUP_BASE = {
29- 'author' : 'Google Cloud Platform' ,
30- 'author_email' : 'jjg+google-cloud-python@google.com' ,
31- 'scripts' : [],
32- 'url' : 'https://github.com/GoogleCloudPlatform/google-cloud-python' ,
33- 'license' : 'Apache 2.0' ,
34- 'platforms' : 'Posix; MacOS X; Windows' ,
35- 'include_package_data' : True ,
36- 'zip_safe' : False ,
37- 'classifiers' : [
38- 'Development Status :: 4 - Beta' ,
39- 'Intended Audience :: Developers' ,
40- 'License :: OSI Approved :: Apache Software License' ,
41- 'Operating System :: OS Independent' ,
42- 'Programming Language :: Python :: 2' ,
43- 'Programming Language :: Python :: 2.7' ,
44- 'Programming Language :: Python :: 3' ,
45- 'Programming Language :: Python :: 3.4' ,
46- 'Programming Language :: Python :: 3.5' ,
47- 'Topic :: Internet' ,
48- ],
49- }
50-
28+ from setup_base import SETUP_BASE
5129
5230REQUIREMENTS = [
5331 'google-cloud-bigquery >= 0.20.0' ,
Original file line number Diff line number Diff line change 1+ SETUP_BASE = {
2+ 'author' : 'Google Cloud Platform' ,
3+ 'author_email' : 'jjg+google-cloud-python@google.com' ,
4+ 'scripts' : [],
5+ 'url' : 'https://github.com/GoogleCloudPlatform/google-cloud-python' ,
6+ 'license' : 'Apache 2.0' ,
7+ 'platforms' : 'Posix; MacOS X; Windows' ,
8+ 'include_package_data' : True ,
9+ 'zip_safe' : False ,
10+ 'classifiers' : [
11+ 'Development Status :: 4 - Beta' ,
12+ 'Intended Audience :: Developers' ,
13+ 'License :: OSI Approved :: Apache Software License' ,
14+ 'Operating System :: OS Independent' ,
15+ 'Programming Language :: Python :: 2' ,
16+ 'Programming Language :: Python :: 2.7' ,
17+ 'Programming Language :: Python :: 3' ,
18+ 'Programming Language :: Python :: 3.4' ,
19+ 'Programming Language :: Python :: 3.5' ,
20+ 'Topic :: Internet' ,
21+ ],
22+ }
Original file line number Diff line number Diff line change 11include README.rst
22graft google
3+ include ../setup_base.py
34graft unit_tests
45global-exclude *.pyc
Original file line number Diff line number Diff line change 2525
2626# NOTE: This is duplicated throughout and we should try to
2727# consolidate.
28- SETUP_BASE = {
29- 'author' : 'Google Cloud Platform' ,
30- 'author_email' : 'jjg+google-cloud-python@google.com' ,
31- 'scripts' : [],
32- 'url' : 'https://github.com/GoogleCloudPlatform/google-cloud-python' ,
33- 'license' : 'Apache 2.0' ,
34- 'platforms' : 'Posix; MacOS X; Windows' ,
35- 'include_package_data' : True ,
36- 'zip_safe' : False ,
37- 'classifiers' : [
38- 'Development Status :: 4 - Beta' ,
39- 'Intended Audience :: Developers' ,
40- 'License :: OSI Approved :: Apache Software License' ,
41- 'Operating System :: OS Independent' ,
42- 'Programming Language :: Python :: 2' ,
43- 'Programming Language :: Python :: 2.7' ,
44- 'Programming Language :: Python :: 3' ,
45- 'Programming Language :: Python :: 3.4' ,
46- 'Programming Language :: Python :: 3.5' ,
47- 'Topic :: Internet' ,
48- ],
49- }
50-
28+ from setup_base .base import SETUP_BASE
5129
5230REQUIREMENTS = [
5331 'google-cloud-core >= 0.20.0' ,
You can’t perform that action at this time.
0 commit comments