Compare commits
2 commits
master
...
amyrlam-2t
Author | SHA1 | Date | |
---|---|---|---|
|
f63048bc8f | ||
|
8a96cf1588 |
3 changed files with 10 additions and 4 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1 +1,5 @@
|
|||
*.pyc
|
||||
# Byte-compiled / optimized / DLL files
|
||||
*.py[cod]
|
||||
|
||||
# Distribution / packaging
|
||||
*.egg-info/
|
||||
|
|
|
@ -22,7 +22,7 @@ Config file
|
|||
### Running Tests
|
||||
|
||||
```
|
||||
$ python -m test.api_test
|
||||
$ python setup.py test
|
||||
```
|
||||
|
||||
### Distributing a package
|
||||
|
|
6
setup.py
6
setup.py
|
@ -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,
|
||||
)
|
||||
|
|
Reference in a new issue