| Index: setup.py |
| diff --git a/setup.py b/setup.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3aabb76ecec72f31eb2fe7ea2c54083a84e5567d |
| --- /dev/null |
| +++ b/setup.py |
| @@ -0,0 +1,29 @@ |
| +# This file is part of Adblock Plus <https://adblockplus.org/>, |
| +# Copyright (C) 2006-present eyeo GmbH |
| +# |
| +# Adblock Plus is free software: you can redistribute it and/or modify |
| +# it under the terms of the GNU General Public License version 3 as |
| +# published by the Free Software Foundation. |
| +# |
| +# Adblock Plus is distributed in the hope that it will be useful, |
| +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| +# GNU General Public License for more details. |
| +# |
| +# You should have received a copy of the GNU General Public License |
| +# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + |
| +"""depup installation script.""" |
| + |
| +from setuptools import setup |
| + |
| +setup( |
| + name='depup', |
| + version='0.1', |
| + packages=['src', ], |
|
kzar
2017/11/10 14:32:01
Nit: This comma inside the list literal seems redu
tlucas
2017/11/13 14:34:08
Done.
|
| + data_files=[('src/templates', ['src/templates/default.trac'])], |
| + scripts=['depup'], |
| + install_requires=['jinja2'], |
| + tests_require=['pytest'], |
| + setup_requires=['pytest-runner'], |
| +) |