commit 20beba9194d26f663c4618b9efd7188645a5eb87
parent f15a7eedf626873f6b966a25c0623c4fca0b1cff
Author: nolash <dev@holbrook.no>
Date: Sun, 28 Jun 2020 22:49:27 +0200
Correct binary name in setup
Diffstat:
4 files changed, 17 insertions(+), 14 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
@@ -1,5 +1,6 @@
* 0.1.2
- Add simple, readable feed summary
+ - Correct binary script name in setup.py
* 0.1.1
- Add feed alias on creation
* 0.1.0
diff --git a/scripts/feedwarrior b/scripts/feedwarrior
@@ -0,0 +1 @@
+../src/main.py
+\ No newline at end of file
diff --git a/setup.py b/setup.py
@@ -0,0 +1,14 @@
+from setuptools import setup
+
+setup(
+ name='feedwarrior',
+ version='0.1.0',
+ description='feeds, warrior style',
+ author='Louis Holbrook',
+ author_email='dev@holbrook.no',
+ packages=['src/feedwarrior', 'src/feedwarrior.cmd'],
+ install_requires=['xdg'],
+ scripts = [
+ 'scripts/feedwarrior',
+ ]
+)
diff --git a/src/setup.py b/src/setup.py
@@ -1,14 +0,0 @@
-from setuptools import setup
-
-setup(
- name='feedwarrior',
- version='0.1.0',
- description='feeds, warrior style',
- author='Louis Holbrook',
- author_email='dev@holbrook.no',
- packages=['feedwarrior', 'feedwarrior.cmd'],
- install_requires=['xdg'],
- scripts=[
- 'main.py',
- ]
-)