Make yamlschema publishable

This commit is contained in:
Reid 'arrdem' McKenzie 2021-05-17 14:38:13 -06:00
commit f194018616
5 changed files with 97 additions and 24 deletions
projects/yamlschema

View file

@ -0,0 +1,29 @@
from setuptools import setup
setup(
name="arrdem.yamlschema",
# Package metadata
version="0.1.0",
license="MIT",
description="Detailed JSON schema validation for YAML",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Reid 'arrdem' McKenzie",
author_email="me@arrdem.com",
url="https://github.com/arrdem/source",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
# Package setup
package_dir={"": "src/python"},
packages=[
"yamlschema",
],
install_requires=[
"PyYAML~=5.4.1",
],
)