-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 950 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
from setuptools import setup
version = "0.3.0"
setup(
name="beautifulday",
version=version,
description="Learning about Webscraping",
long_description_content_type="text/markdown",
long_description=open("./README.md", "r").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
author="Al Audet",
author_email="[email protected]",
url="https://www.linuxnorth.org/beautifulday/",
download_url="https://github.com/alaudet/beautifulday/releases",
license="MIT License",
packages=["beautifulday"],
scripts=["bin/beautifulday"],
install_requires=["requests", "beautifulsoup4"],
)