forked from 23andMe/Yamale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (31 loc) · 1.02 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
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
readme = open('README.md', encoding='utf-8').read()
license = open('LICENSE', encoding='utf-8').read()
setup(
name='yamale',
version='3.0.3',
url='https://github.com/23andMe/Yamale',
author='Bo Lopker',
author_email='[email protected]',
description='A schema and validator for YAML.',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['pyyaml'],
python_requires='>=3.6',
entry_points={
'console_scripts': ['yamale=yamale.command_line:main'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4'
]
)