-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 668 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 668 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
from setuptools import setup
from venmo_scraper import __version__
with open('README.md') as f:
long_description = f.read()
setup(
name='venmo_scraper',
version=__version__,
packages=['venmo_scraper'],
license='GNU GPL',
description='Venmo scraper',
long_description=long_description,
author='Don B. Fox',
url='https://github.com/xofbd/venmo_scraper',
download_url='https://github.com/xofbd/venmo_scraper',
scripts=[
'bin/run_scraper',
'bin/generate_env',
'venmo_scraper/utils/consolidate_data.py',
'venmo_scraper/scrape_public_feed.py',
'venmo_scraper/get_public_feed.py'
]
)