-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 914 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 914 Bytes
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
#!/usr/bin/env python
import os
from setuptools import setup, Command, find_packages
setup(
name='tap-mubi',
version="0.1.0",
description="Singer tap for extracting data from Mubi's Top 1000 List",
author="David Witkowski",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_mubi"],
install_requires=[
'backoff==1.8.0',
'certifi==2024.7.4',
'charset-normalizer==3.0.1',
'ciso8601==2.3.0',
'idna==3.7',
'jsonschema==2.6.0',
'python-dateutil==2.8.2',
'pytz==2022.7.1',
'requests==2.32.4',
'simplejson==3.11.1',
'singer-python==5.13.0',
'six==1.16.0',
'urllib3==2.6.3'
],
packages=["tap_mubi"],
package_dir={"tap_mubi": "tap_mubi"},
package_data={'tap_mubi': ['schemas/*.json']},
entry_points={
'console_scripts': ['tap-mubi=tap_mubi:main']
}
)