|
17 | 17 | from setuptools import find_packages |
18 | 18 | from setuptools import setup |
19 | 19 |
|
| 20 | +from setup_base.base import SETUP_BASE |
| 21 | + |
20 | 22 |
|
21 | 23 | PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__)) |
22 | 24 |
|
23 | 25 | with open(os.path.join(PACKAGE_ROOT, 'README.rst')) as file_obj: |
24 | 26 | README = file_obj.read() |
25 | 27 |
|
26 | | -# NOTE: This is duplicated throughout and we should try to |
27 | | -# 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 | | - |
51 | | - |
52 | 28 | REQUIREMENTS = [ |
53 | 29 | 'httplib2 >= 0.9.1', |
54 | 30 | 'googleapis-common-protos >= 1.3.4', |
|
0 commit comments