-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
32 lines (28 loc) · 1016 Bytes
/
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, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
VERSION = '1.0.1'
setup(
name='py_lead_generation',
version=VERSION,
license = 'MIT',
author='Madi-S (Madi Shaiken)',
author_email='<khovansky99@gmail.com>',
description='Lead generation scripts',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Madi-S/Lead-Generation',
packages=find_packages(),
install_requires=['playwright', 'beautifulsoup4', 'geopy'],
python_requires='>=3.10',
keywords=['python', 'lead generation', 'web automation',
'playwright', 'google maps', 'yelp'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.10',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
]
)