-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.02 KB
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
from setuptools import setup
setup(
name='acfun-uploader-cli',
version='0.1.0',
description='Acfun video uploader command line based on selenium.',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
'Topic :: Internet :: WWW/HTTP :: Browsers',
],
keywords='acfun video uploader chrome selenium',
url='https://github.com/xingheng/acfun-uploader-cli',
author='Will Han',
author_email='xingheng.hax@qq.com',
license='unlicense',
python_requires='>=3',
packages=['acfun_uploader_cli'],
install_requires=[
'configparser>=4.0.2',
'requests>=2.22.0',
'selenium>=4.0.0a3',
'pyvirtualdisplay',
],
include_package_data=True,
zip_safe=False
)