-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 loc) · 1.16 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
from distutils.core import setup
LONG_DESC = '''Extends the syntax of YAML files to accomodate things that an administrator
appreciates - comments inside a configuration file. Applies some additional sanity checks
to the data and fails verbosely, providing a detailed error message.'''
setup(
name = 'reyaml',
packages = ['reyaml'], # this must be the same as the name above
version = '0.2.1',
long_description=LONG_DESC,
description = 'Reader of humane YAML files',
author = 'Alex Railean',
author_email = '[email protected]',
url = 'https://github.com/ralienpp/reyaml',
download_url = 'https://github.com/ralienpp/reyaml/tarball/0.2.1',
keywords = ['yaml', 'parser', 'configuration', 'config'],
license = 'BSD',
classifiers = [
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License'
],
install_requires=[
'PyYAML',
]
)