HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/local/bin/dhwp/setup.py
from setuptools import setup, find_packages
from dhwp.core.version import get_version

VERSION = get_version()

f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()

setup(
    name='dhwp',
    version=VERSION,
    description='Dreamhost WP Management Tool',
    long_description=LONG_DESCRIPTION,
    long_description_content_type='text/markdown',
    author='Jordan Tardif',
    author_email='jordan@dreamhost.com',
    url='https://github.com/johndoe/myapp/',
    license='unlicensed',
    packages=find_packages(exclude=['ez_setup', 'tests*']),
    package_data={'dhwp': ['templates/*']},
    include_package_data=True,
    entry_points="""
        [console_scripts]
        dhwp = dhwp.main:main
    """,
)