forked from sebastian-nagel/sfm-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.08 KB
/
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
from setuptools import setup
setup(
name='sfmutils',
version='2.3.0',
url='https://github.com/gwu-libraries/sfm-utils',
author='Social Feed Manager',
author_email='[email protected]',
packages=['sfmutils'],
description="Utilities to support Social Feed Manager.",
platforms=['POSIX'],
test_suite='tests',
scripts=['sfmutils/stream_consumer.py', 'sfmutils/find_warcs.py'],
install_requires=['pytz==2019.3',
'requests==2.22.0',
'kombu==4.0.2',
'librabbitmq==2.0.0',
'warcio==1.5.3',
'iso8601==0.1.12',
'petl==1.2.0',
'xlsxwriter==1.1.2',
'idna==2.7'],
tests_require=['mock==2.0.0',
'vcrpy==2.0.1',
'python-dateutil==2.7.5'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
],
)