Metadata-Version: 2.4
Name: sciexplorer
Version: 0.1.0
Summary: A Python package for scientific exploration
Author-email: Andy Casey <acasey@flatironinstitute.org>
Maintainer-email: Andy Casey <acasey@flatironinstitute.org>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/sciexplorer
Project-URL: Documentation, https://github.com/yourusername/sciexplorer#readme
Project-URL: Repository, https://github.com/yourusername/sciexplorer
Project-URL: Bug Tracker, https://github.com/yourusername/sciexplorer/issues
Keywords: science,exploration,research
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8.1
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# sciexplorer

A Python package for scientific exploration.

## Installation

You can install sciexplorer using pip:

```bash
pip install sciexplorer
```

For development installation:

```bash
pip install -e ".[dev]"
```

## Usage

```python
import sciexplorer

# Your code here
```

## Features

- Feature 1
- Feature 2
- Feature 3

## Development

### Setup

1. Clone the repository:
```bash
git clone https://github.com/yourusername/sciexplorer.git
cd sciexplorer
```

2. Install development dependencies:
```bash
pip install -e ".[dev]"
```

### Running Tests

```bash
pytest
```

### Code Formatting

```bash
black sciexplorer tests
```

### Type Checking

```bash
mypy sciexplorer
```

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Publishing to PyPI

To publish this package to PyPI:

1. Install build tools:
```bash
pip install build twine
```

2. Build the package:
```bash
python -m build
```

3. Upload to TestPyPI (optional, for testing):
```bash
python -m twine upload --repository testpypi dist/*
```

4. Upload to PyPI:
```bash
python -m twine upload dist/*
```

Make sure you have a PyPI account and have configured your credentials before publishing.
