-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 974 Bytes
/
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
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
with open("README.rst", 'r') as f:
desc = f.read()
setup(
name='spread-confiture',
version="0.17.1rc2",
description="A checker for required fields in yaml files",
long_description=desc,
url="https://github.com/Frky/confiture",
author="_Frky",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: MIT License",
],
keywords="yaml configuration config required fields template",
packages=find_packages(),
install_requires=['pyyaml'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)