Mercurial > hg > svgsitemap
view 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 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os try: description = open('README.txt').read() except IOError: description = '' version = "0.1.2" setup(name='svgsitemap', version=version, description="a site map using PyGraphviz and svg", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/map.svg', license="MPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'WebOb', 'PyGraphviz', ], )