Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Configure for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Oct 16, 2012
1 parent 7f35c17 commit 13ae268
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.cup
*.egg
*.exe
*.hec
*.IGC
Expand All @@ -14,3 +15,5 @@
/debian/flightrecorder.substvars
/debian/flightrecorder/
/debian/python-module-stampdir/
/dist
/flightrecorder.egg-info
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: deb
deb:
debuild --no-tgz-check -uc -us

.PHONY: pypi-upload
pypi-upload:
python setup.py sdist upload
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nose
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[nodestests]
match=^test
where=tests
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup


version = '0.9'

setup(
name='flightrecorder',
version='20110414',
description='Utilities for flight recorders',
author='Tom Payne',
author_email='twpayne@gmail.com',
url='https://github.com/twpayne/flightrecorder',
description='Utilities for flight recorders',
name='flightrecorder',
packages=['flightrecorder'],
scripts=['scripts/flightrecorder'])
scripts=['scripts/flightrecorder'],
setup_requires=['nose'],
#test_suite='tests',
url='https://github.com/twpayne/flightrecorder',
version=version,
zip_safe=True)

0 comments on commit 13ae268

Please sign in to comment.