-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
setup(
name='bieberhose',
version='1.0.0',
description="Collect the latest buzz about 'bieber' from the Twitter firehose",
long_description=open('README.md').read().strip(),
author='Gijs van der Voort',
author_email='[email protected]',
license='MIT License',
packages=['bieberhose'],
entry_points={
'console_scripts': [
'bieberhose=bieberhose.cli:cli',
],
},
python_requires='>=3.6.0',
install_requires=[
'click>=7.0',
'requests-oauthlib>=1.2.0',
'requests>=2.21.0',
'pendulum>=2.0.4',
],
extras_require={
'dev': [
'isort==4.3.4',
'black==18.9b0',
'flake8==3.7.6',
'pytest==4.3.0',
],
},
)