Browse Source

Added release.howto

Bumped to version 2.0 (with the intent to restructure the library into namespace packages
pull/8/head
jaraco 17 years ago
parent
commit
6916b59d03
  1. 10
      release.howto
  2. 2
      setup.py

10
release.howto

@ -0,0 +1,10 @@
How to make a release:
- build tar.gz, egg for 2.4 and 2.5 and send them to pypi.
On my system (Unbuntu gutsy):
python2.4 setup.py egg_info -RDb "" register bdist_egg upload
python2.5 setup.py egg_info -RDb "" sdist bdist_egg upload
- announce release on python-announce-list@python.org
- bump the version in setup.py and commit

2
setup.py

@ -7,7 +7,7 @@ use_setuptools()
from setuptools import setup, find_packages
setup(name = "svg-chart",
version = "1.2",
version = "2.0",
description = "Python SVG Charting Library",
author = "Jason R. Coombs",
author_email = "jaraco@jaraco.com",

Loading…
Cancel
Save