forked from mufeedvh/okjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.01 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
# package
name = 'okjson',
packages = find_packages(include=['okjson']),
install_requires = ['orjson'],
setup_requires = ['pytest-runner'],
tests_require = ['pytest'],
test_suite = 'tests',
# metadata
version = '0.1.1',
description = 'A fast, simple, and pythonic JSON Schema Validator.',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Mufeed VH',
author_email = 'contact@mufeedvh.com',
url = 'https://github.com/mufeedvh/okjson',
download_url = 'https://github.com/mufeedvh/okjson/archive/refs/tags/v0.1.1.tar.gz',
keywords = ['json', 'schema', 'jsonschema', 'validation', 'validator'],
license = 'MIT',
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)