Metadata-Version: 2.1
Name: Chem-Atom
Version: 0.0.5
Summary: Chem-Atom is a library used for storing and editing chemical structural formulas. It provides an easy-to-use class Atom, which primarily stores atoms to achieve functions such as structure registration, modification, and conversion.
Home-page: https://github.com/God-Forever/Chem-Adom
Author: GodForever
Author-email: GodForever2022@outlook.com
Project-URL: Source, https://github.com/God-Forever/Chem-Adom
Platform: Windows
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
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
Description-Content-Type: text/markdown

# Chem-Atom 0.0.5

- Author: GodForever

- Project: https://pypi.org/project/chem-atom

Chem-Atom is a library used for storing and editing chemical structural formulas. It provides an easy-to-use class Atom,which primarily stores atoms to achieve functions such as structure registration, modification, and conversion. 

## How to start

- Ensure that you have Python versions between 3.8 and 3.12. If not, please go to https://www.python.org/downloads/ to download or use conda virtual environment.

- Using the pip tool to obtain Chem-Atom:
```cmd
pip install Chem-Atom==0.0.5
```

- Import the module. A possible import statement is:
```python
import Atom
```

- Or you can use "from ... import ..." statement:
```python
from Atom import *
```

- Start!
```python
# example
import Atom
C = Atom.Atom("C")
print(C)
# <Atom id=1234, element=C, bonds=[6616(H), 9832(H), 8182(H), 4138(H)], charge=0, lone_electron=0>
```
