-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.09 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as readme_file:
long_description = readme_file.read()
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
setup(
name='capsolver_api',
version='1.0.7',
author='seadhy',
author_email='contact@seadhy.com',
description='capsolver.com library for Python',
long_description=long_description,
license="MIT",
long_description_content_type='text/markdown',
url='https://github.com/seadhy/capsolver-api',
project_urls={
'Documentation': 'https://github.com/seadhy/capsolver-api#capsolver-api-for-python',
'Source': 'https://github.com/seadhy/capsolver-api/tree/main/capsolver_api',
'Bug Tracker': 'https://github.com/seadhy/capsolver-api/issues',
},
classifiers=classifiers,
install_requires=['requests'],
packages=['capsolver_api', 'capsolver_api.tasks', 'capsolver_api.recognitions'],
include_package_data=True,
python_requires='>=3',
)