Mercurial > hg > markup
view 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 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.2.1' 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: -*- """, )