forked from skeetzo/onlysnarf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.3 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
46
47
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="OnlySnarf",
version="4.1.2",
author="Skeetzo",
author_email="[email protected]",
url = 'https://github.com/skeetzo/onlysnarf',
keywords = ['OnlyFans', 'OnlySnarf'],
description="OnlyFans Content Distribution Tool",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'selenium==3.141.0',
'pydrive',
'pathlib',
'chromedriver-binary',
# 'geckodriver-autoinstaller',
'google-api-python-client',
'httplib2',
'python-crontab',
'pyinquirer',
'ffmpeg',
'wget',
'pysftp',
'pillow'
],
entry_points={
'console_scripts' : [
'onlysnarf = OnlySnarf.menu:main',
'snarf = OnlySnarf.snarf:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: System :: Shells',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
"Operating System :: OS Independent"
]
)