-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (34 loc) · 1.16 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
from setuptools import setup
from os.path import join, dirname
requirements = [
"aiohttp~=3.8.1",
"selenium~=4.1.5",
"hcaptcha_challenger",
]
setup(
name='async-hcaptcha',
version='1.0.0b11',
packages=["async_hcaptcha"],
package_data={'': ['window.js']},
include_package_data=True,
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type="text/markdown",
description='Unofficial async wrapper for interacting with hCaptcha',
url='https://github.com/RuslanUC/aio-hcaptcha',
repository='https://github.com/RuslanUC/aio-hcaptcha',
author='RuslanUC',
install_requires=requirements,
python_requires='>=3.7',
license='MIT',
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)