This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.63 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
37
38
39
40
41
42
#! /usr/bin/env python3
from setuptools import setup, find_packages
PROJECT = {
"name": "quizlet.py",
"version": "0.0.1.dev1",
"description": "A pythonic wrapper for the official Quizlet API 2.0.",
"long_description": None,
"author": "spikespaz",
"author_email": "[email protected]",
"url": "https://github.com/spikespaz/quizlet.py",
"classifiers": [
"Development Status :: 2 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
"Operating System :: OS Independent"
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Utilities",
"Topic :: Games/Entertainment",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
"keywords": "development education api quizlet wrapper library rest game vocabulary",
"packages": find_packages(exclude=["docs"]),
"python_requires": ">=3"
}
setup(**PROJECT)