Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: eyeo-depup/setup.py

Issue 29599579: OffTopic: DependencyUpdater
Patch Set: Created Nov. 27, 2017, 9:40 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: eyeo-depup/setup.py
diff --git a/patchconv/setup.py b/eyeo-depup/setup.py
similarity index 72%
copy from patchconv/setup.py
copy to eyeo-depup/setup.py
index a36724b2037022b0a3115a63a4f31cb303b4a714..92c6b4d6536bf2ee00540a2d6b9312df50f93cd6 100644
--- a/patchconv/setup.py
+++ b/eyeo-depup/setup.py
@@ -13,14 +13,17 @@
# You should have received a copy of the GNU General Public License
# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
-from setuptools import setup
+"""eyeo-depup installation script."""
+from setuptools import setup
setup(
- name='patchconv',
+ name='eyeo-depup',
version='0.1',
- py_modules=['patchconv'],
- entry_points={
- 'console_scripts': ['patchconv=patchconv:main']
- }
+ packages=['src'],
+ data_files=[('src/templates', ['src/templates/default.trac'])],
+ scripts=['eyeo-depup'],
+ install_requires=['jinja2'],
+ tests_require=['pytest'],
+ setup_requires=['pytest-runner'],
)

Powered by Google App Engine
This is Rietveld