Automate Scrubbing your Facebook Presence
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.

46 lines
1.2 KiB

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="delete-facebook-posts",
4 years ago
version="1.1.17",
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(),
include_package_data=True,
requires_python=">=3.6",
package_data={
# Include *json files in the package:
'': ['*.json'],
},
install_requires = [
"selenium",
"selenium-requests",
"requests",
"pybloom-live",
"attrs>=20.3.0",
"cattrs>=1.1.2",
5 years ago
"lxml",
"pendulum",
"clint",
"progressbar",
"appdirs"
],
classifiers= [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points = {
"console_scripts" : [
"deletefb = deletefb.deletefb:run_delete"
]
}
)