-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (27 loc) · 1016 Bytes
/
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
from setuptools import setup, find_packages
with open("README", "r") as f:
longdesc = f.read()
setup(
name="scratchapi2",
version="1.5",
description="The New Scratch API Client.",
long_description=longdesc,
url="https://github.com/apple502j/scratchapi2",
author="Apple502j",
license="GPLv3+",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Natural Language :: Japanese",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="scratch api requests",
packages=find_packages(),
install_requires="requests",
python_requires=">=3.0"
)