Mercurial > hg > svgsitemap
annotate setup.py @ 26:ccd73b01ba79 default tip
py3
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 03 Nov 2020 10:00:32 -0800 |
| parents | f9cf249dd512 |
| children |
| rev | line source |
|---|---|
| 0 | 1 from setuptools import setup, find_packages |
| 2 import sys, os | |
| 3 | |
| 4 try: | |
| 26 | 5 description = open('README.txt').read() |
| 6 except IOError: | |
| 0 | 7 description = '' |
| 8 | |
|
20
f9cf249dd512
bump version to respect formatting fixes
Jeff Hammel <jhammel@mozilla.com>
parents:
16
diff
changeset
|
9 version = "0.1.2" |
| 0 | 10 |
| 11 setup(name='svgsitemap', | |
| 12 version=version, | |
| 3 | 13 description="a site map using PyGraphviz and svg", |
| 0 | 14 long_description=description, |
| 15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
| 3 | 16 author='Jeff Hammel', |
| 26 | 17 author_email='k0scist@gmail.com', |
| 3 | 18 url='http://k0s.org/map.svg', |
| 19 license="MPL", | |
| 0 | 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
| 21 include_package_data=True, | |
| 22 zip_safe=False, | |
| 23 install_requires=[ | |
| 26 | 24 'WebOb', |
| 3 | 25 'PyGraphviz', |
| 0 | 26 ], |
| 26 | 27 ) |
