-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (46 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
from __future__ import print_function
from setuptools import setup
def get_long_description():
with open("README.md") as f:
long_description = f.read()
return long_description
# Package meta-data.
NAME = "pantry_cloud"
DESCRIPTION = "Free JSON Storage API Implimentation In Python."
KEYWORDS = [NAME, "JSON", "API", "CLOUD STORAGE"]
GIT_URL = "https://github.com/sarvesh4396/pantry-cloud"
AUTHOR = "Sarvesh Kumar Dwivedi"
REQUIRES_PYTHON = ">=3.7.0"
VERSION = "1.2.0"
setup(
name=NAME,
packages=[NAME],
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
long_description=get_long_description(),
long_description_content_type="text/markdown",
python_requires=REQUIRES_PYTHON,
url=GIT_URL,
download_url="https://github.com/sarvesh4396/pantry-cloud/archive/refs/tags/v1.2.tar.gz",
install_requires=["requests"],
include_package_data=True,
entry_points={"console_scripts": ["pantry = pantry_cloud.cli:main"]},
license="MIT",
keywords=KEYWORDS,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Internet",
"Topic :: Software Development :: Build Tools",
"Topic :: Communications :: File Sharing",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
],
)