forked from weskerfoot/DeleteFB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.15 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="delete-facebook-posts",
version="1.1.13",
author="Wesley Kerfoot",
author_email="[email protected]",
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-3.8",
"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"
]
}
)