-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 897 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 897 Bytes
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
from setuptools import setup
try:
with open("README.rst") as f:
long_description = f.read()
except OSError:
long_description = ""
setup(
# Metadata
name="JSON_minify",
version="0.3.1-dev",
description=(
"A simple script to minify valid JSON, containing C/C++ style comments"
),
long_description=long_description,
url="https://github.com/getify/JSON.minify/tree/python",
author="Gerald Storer",
maintainer="Pradyun S. Gedam",
maintainer_email="pradyunsg@gmail.com",
packages=["json_minify"],
license="MIT",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
],
package_data={
"json_minify": ["*.pyi", "py.typed"]
}
)