Mercurial > hg > markup
view setup.py @ 14:45b1c3f63730 default tip
version bump + release
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 27 May 2024 16:57:59 -0700 |
parents | dc8cc3d30d6d |
children |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.2.2' setup(name='markup', version=version, description="generate HTML markup programmatically", long_description="", classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[], entry_points=""" # -*- Entry points: -*- """, )