-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (31 loc) · 1.02 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
import os
from setuptools import setup, find_packages
# The directory containing this file.
WORK_DIR = os.path.dirname(os.path.abspath(__file__))
# The text of the README file.
README = os.path.join(WORK_DIR, 'README.md')
with open(README, 'r') as f:
long_description = f.read()
setup(
name='google-play-scraper-py',
version='0.3.1',
description='Scrape application data from the Google Play store.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/blues-lab/google-play-scraper-py',
author='Berkeley Lab for Usable and Experimental Security (BLUES)',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9'
],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'scraper=scraper.__main__:main',
]
},
)