Skip to content

Commit 3aaef9b

Browse files
author
jondkelley
committed
Fix setup.py version
1 parent f3747ed commit 3aaef9b

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

setup.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
from setuptools import setup, find_packages
22
from sys import path
33

4-
from answerbook_webhook_test import __version__
5-
64
path.insert(0, '.')
75

86
NAME = "logdna_line_export"
97

108
if __name__ == "__main__":
11-
with open('requirements.txt') as f:
12-
requirements = f.read().splitlines()
13-
149
setup(
1510
name=NAME,
16-
version=__version__,
11+
version="0.0.2",
1712
author="Jonathan Kelley",
1813
author_email="[email protected]",
1914
url="https://github.com/jondkelley/logdna_line_export_cli",
2015
license='Copyleft',
2116
packages=find_packages(),
2217
package_dir={NAME: NAME},
2318
description="logdna_line_export - Just a simple webhook test app",
24-
25-
install_requires=requirements,
19+
include_package_data=True,
20+
install_requires=['Click','requests','python-dateutil'],
2621

2722
entry_points={
2823
'console_scripts': ['logdna_line_export = logdna_line_export.main:entry'],

0 commit comments

Comments
 (0)