Skip to content

Commit

Permalink
chore: Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kylef committed Apr 28, 2017
1 parent 34920d4 commit b34cf25
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Refract Python Changelog

## 0.1.0 (2017-04-28)

Initial Release.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
A Python library for interacting with
[Refract](https://github.com/refractproject/refract-spec).

## Installation

```python
$ pip install refract
```

## Usage

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

from setuptools import setup

setup(
name='refract',
version='0.1.0',
description='A Python library for interacting with Refract.',
url='https://github.com/kylef/refract.py',
packages=['refract'],
author='Kyle Fuller',
author_email='kyle@fuller.li',
license='BSD',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: BSD License',
)
)

0 comments on commit b34cf25

Please sign in to comment.