forked from vaidik/commentjson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (30 loc) · 963 Bytes
/
Copy pathsetup.py
File metadata and controls
43 lines (30 loc) · 963 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
37
38
39
40
41
42
43
from __future__ import with_statement
import os
from setuptools import setup, find_packages
__version__ = "1.0.0"
install_requires = ["lark-parser>=0.7.1,<0.8.0"]
description = ""
def path(fname):
return os.path.join(os.path.dirname(__file__), fname)
with open(path("README.MD")) as f:
description += f.read() + "\n\n"
classifiers = ["Programming Language :: Python"]
setup(
name="commentjson2",
version=__version__,
url="https://github.com/owo-dusk/commentjson2",
packages=find_packages(),
long_description=description,
long_description_content_type="text/markdown",
description=("Add Python and JavaScript style comments in your JSON files."),
author="EchoQuill",
author_email="kapoor.vaidik@gmail.com",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
tests_require=[
"six",
],
test_suite="commentjson2.tests",
)