| OLD | NEW |
| 1 # Copyright 2014 Google Inc. All rights reserved. | 1 # Copyright 2014 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with 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 | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 readme = fp.read().strip() | 27 readme = fp.read().strip() |
| 28 | 28 |
| 29 readme_lines = readme.splitlines() | 29 readme_lines = readme.splitlines() |
| 30 | 30 |
| 31 setup( | 31 setup( |
| 32 name='typ', | 32 name='typ', |
| 33 packages=['typ'], | 33 packages=['typ'], |
| 34 package_data={'': ['../README.rst']}, | 34 package_data={'': ['../README.rst']}, |
| 35 entry_points={ | 35 entry_points={ |
| 36 'console_scripts': [ | 36 'console_scripts': [ |
| 37 'typ=typ.cmdline:main', | 37 'typ=typ.runner:main', |
| 38 ] | 38 ] |
| 39 }, | 39 }, |
| 40 install_requires=[ | 40 install_requires=[ |
| 41 ], | 41 ], |
| 42 version=VERSION, | 42 version=VERSION, |
| 43 author='Dirk Pranke', | 43 author='Dirk Pranke', |
| 44 author_email='dpranke@chromium.org', | 44 author_email='dpranke@chromium.org', |
| 45 description=readme_lines[3], | 45 description=readme_lines[3], |
| 46 long_description=('\n' + '\n'.join(readme_lines)), | 46 long_description=('\n' + '\n'.join(readme_lines)), |
| 47 url='https://github.com/dpranke/typ', | 47 url='https://github.com/dpranke/typ', |
| 48 license='Apache', | 48 license='Apache', |
| 49 classifiers=[ | 49 classifiers=[ |
| 50 'Development Status :: 3 - Alpha', | 50 'Development Status :: 3 - Alpha', |
| 51 'Intended Audience :: Developers', | 51 'Intended Audience :: Developers', |
| 52 'License :: OSI Approved :: Apache', | 52 'License :: OSI Approved :: Apache', |
| 53 'Programming Language :: Python :: 2', | 53 'Programming Language :: Python :: 2', |
| 54 'Programming Language :: Python :: 2.7', | 54 'Programming Language :: Python :: 2.7', |
| 55 'Programming Language :: Python :: 3', | 55 'Programming Language :: Python :: 3', |
| 56 'Programming Language :: Python :: 3.4', | 56 'Programming Language :: Python :: 3.4', |
| 57 'Topic :: Software Development :: Testing', | 57 'Topic :: Software Development :: Testing', |
| 58 ], | 58 ], |
| 59 ) | 59 ) |
| OLD | NEW |