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.
44 lines
1.1 KiB
44 lines
1.1 KiB
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="delete-facebook-posts",
|
|
version="1.1.9",
|
|
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",
|
|
"cattrs",
|
|
"lxml",
|
|
"pendulum",
|
|
"clint",
|
|
"progressbar"
|
|
],
|
|
classifiers= [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points = {
|
|
"console_scripts" : [
|
|
"deletefb = deletefb.deletefb:run_delete"
|
|
]
|
|
}
|
|
)
|
|
|