-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.04 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
33
34
35
36
37
38
"""Installer for the singer-getting-started package."""
from setuptools import find_packages
from setuptools import setup
setup(
name='singer-getting-started',
version='0.1.0',
description='The purpose of this project is to make simple examples '
'of how singer.io works in practice.',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'License :: MIT License',
],
author='Gasper Vozel',
author_email='[email protected]',
url='https://github.com/karantan/singer-getting-started',
keywords='singer',
license='MIT License',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'backoff',
'requests',
'singer-python',
'target-csv',
'tap-fixerio',
],
entry_points='''
[console_scripts]
my-ip=main:my_ip
tap-weather-forecast=weather_forecast:main
''',
)