HEX
Server: Apache
System: Linux vps28526 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
User: heewonvps_17 (6705002)
PHP: 7.4.33
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
    """,
)