forked from getify/JSON.minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 827 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
30
31
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
# Metadata
name="JSON_minify",
version="0.2.1",
include_package_data=True,
license='MIT License',
description=(
"A simple script to minify valid JSON, containing JavaScript comments"
),
long_description=long_description,
url="https://github.com/fiduswriter/JSON.minify/tree/python",
author="Gerald Storer",
maintainer="Johannes Wilm",
maintainer_email="[email protected]",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
],
)