You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
859 B
31 lines
859 B
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="delete-facebook-posts",
|
|
version="1.0.2",
|
|
author="Wesley Kerfoot",
|
|
author_email="wes@wesk.tech",
|
|
description="A Selenium Script to Delete Facebook Posts",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/weskerfoot/DeleteFB",
|
|
packages=setuptools.find_packages(),
|
|
install_requires = [
|
|
"selenium",
|
|
"selenium-requests",
|
|
"requests"
|
|
],
|
|
classifiers= [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points = {
|
|
"console_scripts" : [
|
|
"deletefb = deletefb.deletefb:run_delete"
|
|
]
|
|
}
|
|
)
|
|
|