Skip to main content

A tool to evaluate the impact of social media usage on personal wellbeing and lifestyle habits

Project description

Wellbeing Calculator

This tool evaluates the impact of social media usage on personal wellbeing and lifestyle habits. It uses data such as social media usage time, sleep time, exercise time, and stress levels to calculate a wellbeing score for each individual.

Installation

You can install the Wellbeing Calculator via pip:

pip install wellbeing_calculator


### `setup.py` ファイルの内容
`setup.py`ファイルも確認のために再掲します。

```python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os

# プロジェクトのルートディレクトリを取得
HERE = os.path.abspath(os.path.dirname(__file__))

# README.mdの内容を読み込む
with open(os.path.join(HERE, "README.md"), encoding="utf-8") as f:
    long_description = f.read()

setup(
    name='wellbeing_calculator',
    version='0.3',  # バージョン番号を更新
    packages=find_packages(where='src'),
    package_dir={'': 'src'},
    install_requires=[
        'pandas',
    ],
    entry_points={
        'console_scripts': [
            'wellbeing_calculator=wellbeing_calculator.calculator:main',
        ],
    },
    long_description=long_description,
    long_description_content_type='text/markdown',
    author='Your Name',
    author_email='your-email@example.com',
    description='A tool to evaluate the impact of social media usage on personal wellbeing and lifestyle habits',
    url='https://github.com/yourusername/wellbeing_calculator',  # プロジェクトのリポジトリURL
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
    ],
    python_requires='>=3.6',
    license='MIT',
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wellbeing_calculator-0.4.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

wellbeing_calculator-0.4-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page