Compare commits

...
This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.

2 commits

Author SHA1 Message Date
amyrlam
f63048bc8f modified .gitignore 2014-11-25 17:46:56 -08:00
amyrlam
8a96cf1588 added 2to3 2014-11-18 21:51:10 -08:00
3 changed files with 10 additions and 4 deletions

6
.gitignore vendored
View file

@ -1 +1,5 @@
*.pyc
# Byte-compiled / optimized / DLL files
*.py[cod]
# Distribution / packaging
*.egg-info/

View file

@ -22,7 +22,7 @@ Config file
### Running Tests
```
$ python -m test.api_test
$ python setup.py test
```
### Distributing a package

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="fastly",
version="0.0.3",
version="0.0.4",
author="Fastly",
author_email="support@fastly.com",
description="Fastly python API",
@ -21,5 +21,7 @@ setup(
"bin/purge_service",
"bin/purge_key",
"bin/purge_url"
]
],
test_suite="test.api_test",
use_2to3 = True,
)