-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.27 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
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="yaml_rulz",
version="0.0.1",
description="A YAML validator",
license="MIT",
author="Milan Boleradszki",
author_email="[email protected]",
maintainer="Milan Boleradszki",
maintainer_email="[email protected]",
url="https://github.com/milonoir/yaml_rulz",
packages=["yaml_rulz"],
install_requires=["PyYAML", "prettytable"],
tests_require=["mock"],
classifiers=[
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Text Processing :: Markup",
],
entry_points={
"console_scripts": [
"yaml_rulz = yaml_rulz.cli:main",
],
},
)