comparison setup.py @ 1:dacffabe885f

update metadata
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 13:03:33 -0800
parents 5b6f8024e177
children dc8cc3d30d6d
comparison
equal deleted inserted replaced
0:5b6f8024e177 1:dacffabe885f
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 version = '0.2' 4 version = '0.2.1'
5 5
6 setup(name='markup', 6 setup(name='markup',
7 version=version, 7 version=version,
8 description="generate HTML markup programmatically", 8 description="generate HTML markup programmatically",
9 long_description="""\ 9 long_description="",
10 """,
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12 keywords='', 11 keywords='',
13 author='Jeff Hammel', 12 author='Jeff Hammel',
14 author_email='jhammel@openplans.org', 13 author_email='k0scist@gmail.com',
15 url='http://www.openplans.org/people/k0s/', 14 url='http://k0s.org/'
16 license='GPL', 15 license='GPL',
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
18 include_package_data=True, 17 include_package_data=True,
19 zip_safe=False, 18 zip_safe=False,
20 install_requires=[ 19 install_requires=[],
21 # -*- Extra requirements: -*-
22 ],
23 entry_points=""" 20 entry_points="""
24 # -*- Entry points: -*- 21 # -*- Entry points: -*-
25 """, 22 """,
26 ) 23 )