├── README.md ├── setup.py └── src └── automateboringstuff3rdedition └── __init__.py /README.md: -------------------------------------------------------------------------------- 1 | # automateboringstuff 2 | 3 | This package is a placeholder. -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | import re, io 2 | from setuptools import setup, find_packages 3 | 4 | # Load version from module (without loading the whole module) 5 | with open('src/automateboringstuff3rdedition/__init__.py', 'r') as fo: 6 | version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', 7 | fo.read(), re.MULTILINE).group(1) 8 | 9 | # Read in the README.md for the long description. 10 | with io.open('README.md', encoding='utf-8') as fo: 11 | long_description = fo.read() 12 | 13 | setup( 14 | name='automateboringstuff3rdedition', 15 | version=version, 16 | url='https://github.com/asweigart/automateboringstuff', 17 | author='Al Sweigart', 18 | author_email='al@inventwithpython.com', 19 | description=('This package installs the modules used in "Automate the Boring Stuff with Python", 2nd Edition.'), 20 | long_description=long_description, 21 | packages=find_packages(where='src'), 22 | package_dir={'': 'src'}, 23 | license='BSD', 24 | install_requires=[ 25 | 'send2trash==1.5.0', 26 | 'requests==2.21.0', 27 | 'beautifulsoup4==4.7.1', 28 | 'selenium==3.141.0', 29 | 'openpyxl==2.6.1', 30 | 'PyPDF2==1.26.0', 31 | 'python-docx==0.8.10', 32 | 'imapclient==2.1.0', 33 | 'pyzmail36==1.0.4', 34 | 'twilio', 35 | 'ezgmail', 36 | 'ezsheets', 37 | 'pyinputplus', 38 | 'pillow==6.0.0', 39 | 'pyautogui', 40 | ], 41 | keywords="automate boring stuff python", 42 | classifiers=[ 43 | 'Development Status :: 5 - Production/Stable', 44 | 'Environment :: Win32 (MS Windows)', 45 | 'Environment :: X11 Applications', 46 | 'Environment :: MacOS X', 47 | 'Intended Audience :: Developers', 48 | 'License :: OSI Approved :: BSD License', 49 | 'Operating System :: OS Independent', 50 | 'Programming Language :: Python', 51 | 'Programming Language :: Python :: 3', 52 | 'Programming Language :: Python :: 3.5', 53 | 'Programming Language :: Python :: 3.6', 54 | 'Programming Language :: Python :: 3.7', 55 | 'Programming Language :: Python :: 3.8', 56 | ], 57 | ) 58 | 59 | -------------------------------------------------------------------------------- /src/automateboringstuff3rdedition/__init__.py: -------------------------------------------------------------------------------- 1 | import webbrowser 2 | 3 | __version__ = '1.0.0' 4 | 5 | webbrowser.open('https://inventwithpython.com') 6 | --------------------------------------------------------------------------------