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'], |
) |