Skip to content
This repository has been archived by the owner on Oct 3, 2019. It is now read-only.

Commit

Permalink
Rename project to "YORM"
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Sep 10, 2014
1 parent 2fd73c6 commit 4efc466
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Yorm</name>
<name>YORM</name>
<comment></comment>
<projects>
</projects>
Expand Down
4 changes: 1 addition & 3 deletions .pydevproject
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 3.0</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Yorm</pydev_property>


<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">YORM</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/${PROJECT_DIR_NAME}</path>
</pydev_pathproperty>
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Yorm
YORM
====

[![Build Status](http://img.shields.io/travis/jacebrowning/yorm/master.svg)](https://travis-ci.org/jacebrowning/yorm)
Expand All @@ -7,7 +7,7 @@ Yorm
[![PyPI Version](http://img.shields.io/pypi/v/yorm.svg)](https://pypi.python.org/pypi/yorm)
[![PyPI Downloads](http://img.shields.io/pypi/dm/yorm.svg)](https://pypi.python.org/pypi/yorm)

Yorm is TBD. The name will change.
YORM provides functions and decorators to automatically map objects to YAML files.



Expand All @@ -23,9 +23,9 @@ Requirements
Installation
------------

Yorm can be installed with 'pip':
YORM can be installed with 'pip':

pip install Yorm
pip install YORM

Or directly from the source code:

Expand All @@ -38,13 +38,13 @@ Or directly from the source code:
Basic Usage
===========

After installation, Yorm imported from the package:
After installation, YORM imported from the package:

python
>>> import yorm
yorm.__version__

Yorm doesn't do anything yet.
YORM doesn't do anything yet.



Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

"""
Setup script for Yorm.
Setup script for YORM.
"""

import setuptools
Expand All @@ -20,8 +20,8 @@
name=__project__,
version=__version__,

description="Yorm is a TBD.",
url='http://pypi.python.org/pypi/Yorm',
description="Automatic object YAML mapping for Python.",
url='http://pypi.python.org/pypi/YORM',
author='Jace Browning',
author_email='jacebrowning@gmail.com',

Expand All @@ -36,6 +36,7 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],

install_requires=open('requirements.txt').readlines(),
Expand Down
4 changes: 2 additions & 2 deletions yorm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python

"""Package for Yorm."""
"""Package for YORM."""

__project__ = 'Yorm'
__project__ = 'YORM'
__version__ = '0.0.0'

VERSION = __project__ + '-' + __version__
Expand Down

0 comments on commit 4efc466

Please sign in to comment.