Skip to content

Commit

Permalink
Add contributing file and update package version
Browse files Browse the repository at this point in the history
  • Loading branch information
tfoxy committed Jun 10, 2018
1 parent dc1d01c commit 977fde4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 17 deletions.
28 changes: 28 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Contributing


## Environment

The system must have installed:

* python 3
* virtualenv

```sh
virtualenv -p python3 venv
. venv/bin/activate
pip install -r dev-requirements.txt
# run tests:
python setup.py test
```


## Publish

```sh
# update version in setup.py
# then:
rm -r dist
python setup.py sdist bdist_wheel
twine upload dist/*
```
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,3 @@ categories = (
))
)
```


## Contribute

The system must have installed:

* python 3
* virtualenv

```sh
virtualenv -p python3 venv
. venv/bin/activate
pip install -r dev-requirements.txt
# run tests:
python setup.py test
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name='graphene-django-optimizer',
version='0.1.0',
version='0.2.0',
author='Tomás Fox',
author_email='tomas.c.fox@gmail.com',
description='Optimize database access inside graphene queries.',
Expand Down

0 comments on commit 977fde4

Please sign in to comment.