Metadata-Version: 2.4
Name: pydistribute
Version: 0.1.0
Summary: A GUI tool for creating and publishing Python modules to PyPI
Home-page: https://github.com/yourusername/pydistribute
Author: Your Name
Author-email: your.email@example.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# NLTKK - Natural Language Toolkit Kit

A comprehensive NLP toolkit with functions for text processing, analysis, and more.

## Features

- Plural word detection
- Text splitting
- Stemming and lemmatization
- Stop word removal
- Sentence tokenization
- Edit distance calculation
- N-gram models
- Bigram probability calculation
- Kneser-Ney smoothing
- Sentiment analysis
- Text chunking
- POS tagging
- HMM POS tagging
- Named Entity Recognition
- Markov Chains
- Thematic Role Labeling
- PropBank lookup
- FrameNet lookup
- Relation extraction
- Relation classification

## Installation

```bash
pip install nlltk
```

## Usage

```python
import nltkk

# Example usage
text = "Hello! How's everything going? Let's meet at 5:00 pm. #excited"
words = nltkk.split(text)
print(words)
```

## Simple Module Manager

This package also includes a GUI application for creating and publishing your own Python modules:

### Features
- Create Python modules by entering module name and code
- Build distribution packages (wheel and source distributions)
- Publish to PyPI or TestPyPI for public access
- Simple and intuitive interface

### Running the Module Manager

```bash
simple-module-manager
```

Or run directly:

```bash
python simple_module_manager.py
```

### How to Publish Your Module

1. Run the Simple Module Manager
2. Enter a unique module name
3. Write or paste your Python code
4. Click "Create Module"
5. Click "Build Module"
6. Enter your PyPI API token
7. Click "Publish Module"

### Getting PyPI API Tokens

1. Go to https://pypi.org/manage/account/
2. Scroll down to "API tokens"
3. Click "Add API token"
4. Give it a name and select scope
5. Copy the token and paste it in the application

### Making Your Module Publicly Accessible

When you publish to PyPI:
1. Your module becomes publicly available
2. Anyone can install it with `pip install your-module-name`
3. They can import and use your functions and classes in their projects

This makes your code accessible to the entire Python community!

# PyDistribute

A GUI tool for creating and publishing Python modules to PyPI.

## Features

- Simple graphical interface for package creation
- Automatic generation of setup files
- One-click package building and publishing
- Usage guide generation
- Real-time console output with colored logging

## Installation

```bash
pip install pydistribute
```

## Usage

After installation, you can run PyDistribute in two ways:

1. From the command line:
   ```bash
   pydistribute
   ```

2. From Python:
   ```python
   import pydistribute
   pydistribute.run()
   ```

## Publishing Your Package

1. Enter your module information (name, version, author, etc.)
2. Paste your Python code in the editor
3. Generate setup files
4. Build your package
5. Publish to PyPI using your API token

## Requirements

- Python 3.6 or higher
- pip
- A PyPI account and API token

## License

This project is licensed under the MIT License.
