Make yamlschema publishable
This commit is contained in:
parent
65879a3e7b
commit
f194018616
5 changed files with 97 additions and 24 deletions
projects/yamlschema
29
projects/yamlschema/setup.py
Normal file
29
projects/yamlschema/setup.py
Normal 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",
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue