comparison 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
comparison
equal deleted inserted replaced
25:58643b3191f0 26:ccd73b01ba79
1 from setuptools import setup, find_packages 1 from setuptools import setup, find_packages
2 import sys, os 2 import sys, os
3 3
4 try: 4 try:
5 description = file('README.txt').read() 5 description = open('README.txt').read()
6 except IOError: 6 except IOError:
7 description = '' 7 description = ''
8 8
9 version = "0.1.2" 9 version = "0.1.2"
10 10
11 setup(name='svgsitemap', 11 setup(name='svgsitemap',
12 version=version, 12 version=version,
13 description="a site map using PyGraphviz and svg", 13 description="a site map using PyGraphviz and svg",
14 long_description=description, 14 long_description=description,
15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers 15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
16 author='Jeff Hammel', 16 author='Jeff Hammel',
17 author_email='jhammel@mozilla.com', 17 author_email='k0scist@gmail.com',
18 url='http://k0s.org/map.svg', 18 url='http://k0s.org/map.svg',
19 license="MPL", 19 license="MPL",
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
21 include_package_data=True, 21 include_package_data=True,
22 zip_safe=False, 22 zip_safe=False,
23 install_requires=[ 23 install_requires=[
24 # -*- Extra requirements: -*- 24 'WebOb',
25 'WebOb',
26 'PyGraphviz', 25 'PyGraphviz',
27 ], 26 ],
28 entry_points=""" 27 )
29 # -*- Entry points: -*-
30 [paste.app_factory]
31 main = svgsitemap.factory:factory
32 """,
33 )
34