Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Fix package dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrhaas committed Dec 12, 2015
1 parent 2ac3fdb commit 002d68a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
requests>=1.2.3
requests-oauthlib>=0.3.2
redis
kafka-python
redis>=2.10.3
kafka-python>=0.9.5
python-dateutil
click
scutils
scutils>=0.0.6
pymysql
nose
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,24 @@ def readme():
install_requires = [
'requests>=1.2.3',
'requests-oauthlib>=0.3.2',
'redis',
'kafka-python',
'redis>=2.10.3',
'kafka-python>=0.9.5',
'python-dateutil',
'click'
'click',
# 'mock',
# 'pymysql',
'scutils>=0.0.6',
]

lint_requires = [
'pep8',
'pyflakes'
]

tests_require = ['nose']
tests_require = [
'nose',
'mock',
]
dependency_links = []
setup_requires = []
extras_require = {
Expand All @@ -53,7 +59,7 @@ def readme():
license='MIT',
url='https://github.com/istresearch/traptor',
keywords=['twitter', 'distributed', 'kafka', 'ansible', 'redis'],
packages=find_packages(),
packages=['traptor'],
package_data={},
# data_files=data_files,
install_requires=install_requires,
Expand All @@ -64,5 +70,5 @@ def readme():
zip_safe=True,
test_suite='nose.collector',
include_package_data=True,
entry_points={'console_scripts': ['traptor=traptor.traptor:main']},
# entry_points={'console_scripts': ['traptor=traptor.traptor:main']},
)

0 comments on commit 002d68a

Please sign in to comment.