-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
31 lines (28 loc) · 1.05 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
from distutils.core import setup
from os import path
README = path.abspath(path.join(path.dirname(__file__), "README.md"))
setup(
name="norecaptcha",
version="1.0.0",
packages=["norecaptcha"],
description="Python client for the google new No CAPTCHA reCAPTCHA services.",
long_description=open(README).read(),
author="Oursky Ltd.",
author_email="[email protected]",
url="https://github.com/oursky/norecaptcha",
download_url="https://www.github.com/oursky/norecaptcha/tarball/master",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)