python3-anticaptcha/setup.py

104 lines
2.9 KiB
Python
Raw Normal View History

2019-02-14 11:03:43 +00:00
import io
import os
import sys
from shutil import rmtree
from setuptools import setup, Command
# Package meta-data.
2019-03-19 19:26:12 +00:00
NAME = "python3-anticaptcha"
DESCRIPTION = "Python 3 Anti-Captcha service library with AIO module."
URL = "https://github.com/AndreiDrang/python3-anticaptcha"
EMAIL = "drang.andray@gmail.com"
AUTHOR = "AndreiDrang, redV0ID"
REQUIRES_PYTHON = ">=3.6.0"
2021-01-02 22:55:52 +00:00
VERSION = "1.7.1"
REQUIRED = ["requests>=2.21.0", "aiohttp==3.*", "pika==1.*"]
2019-02-14 11:03:43 +00:00
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
2019-03-19 19:26:12 +00:00
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
2019-02-14 11:03:43 +00:00
except FileNotFoundError:
long_description = DESCRIPTION
2019-03-19 19:26:12 +00:00
2019-02-14 11:03:43 +00:00
class UploadCommand(Command):
"""Support setup.py upload."""
2019-03-19 19:26:12 +00:00
description = "Build and publish the package."
2019-02-14 11:03:43 +00:00
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
2019-03-19 19:26:12 +00:00
print("\033[1m{0}\033[0m".format(s))
2019-02-14 11:03:43 +00:00
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
2019-03-19 19:26:12 +00:00
self.status("Removing previous builds…")
rmtree(os.path.join(here, "dist"))
2019-02-14 11:03:43 +00:00
except OSError:
pass
2019-03-19 19:26:12 +00:00
self.status("Building Source and Wheel distribution…")
os.system("{0} setup.py sdist bdist_wheel".format(sys.executable))
self.status("Uploading the package to PyPI via Twine…")
os.system("twine upload dist/*")
2019-02-14 11:03:43 +00:00
sys.exit()
2017-10-11 18:36:36 +00:00
2019-03-19 19:26:12 +00:00
2017-10-11 18:36:36 +00:00
setup(
2019-03-19 19:26:12 +00:00
name=NAME,
version=VERSION,
author=AUTHOR,
packages=["python3_anticaptcha"],
install_requires=REQUIRED,
description=DESCRIPTION,
2019-09-12 14:50:12 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
2019-03-19 19:26:12 +00:00
package_dir={"python3-anticaptcha": "python3_anticaptcha"},
2019-01-10 23:42:51 +00:00
include_package_data=True,
2019-03-19 19:26:12 +00:00
url=URL,
2019-09-12 14:50:12 +00:00
author_email=EMAIL,
2019-03-19 19:26:12 +00:00
license="MIT",
keywords="""
2019-02-14 11:03:43 +00:00
captcha
anticaptcha
python3
recaptcha
security
api
python-library
python-anticaptcha
anticaptcha-client
2019-03-19 19:26:12 +00:00
""",
python_requires=REQUIRES_PYTHON,
2019-02-14 11:03:43 +00:00
zip_safe=False,
classifiers=[
2019-03-19 19:26:12 +00:00
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2019-03-19 19:26:12 +00:00
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
2019-02-14 11:03:43 +00:00
],
# Build and upload package: python3 setup.py upload
2019-03-19 19:26:12 +00:00
cmdclass={"upload": UploadCommand},
2017-10-11 18:36:36 +00:00
)