Metadata-Version: 2.1
Name: darwinio
Version: 0.0.1
Summary: An evolution simulator
Project-URL: Homepage, https://github.com/tusharhero/darwinio
Project-URL: Bug Tracker, https://github.com/tusharhero/darwinio/issues
Author-email: Tushar Maharana <tusharhero@sdf.org>, Mihir Nallagonda <adhikshithamihir@gmail.com>
License-File: LICENSE.md
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7
Requires-Dist: nilsimsa==0.3.8
Requires-Dist: numpy==1.24.3
Requires-Dist: pygame-ce==2.2.1
Requires-Dist: pygame-gui==0.6.9
Description-Content-Type: text/markdown

# Darwinio

 ```ascii
 ______   _______  _______          _________ _       _________ _______ 
(  __  \ (  ___  )(  ____ )|\     /|\__   __/( (    /|\__   __/(  ___  )
| (  \  )| (   ) || (    )|| )   ( |   ) (   |  \  ( |   ) (   | (   ) |
| |   ) || (___) || (____)|| | _ | |   | |   |   \ | |   | |   | |   | |
| |   | ||  ___  ||     __)| |( )| |   | |   | (\ \) |   | |   | |   | |
| |   ) || (   ) || (\ (   | || || |   | |   | | \   |   | |   | |   | |
| (__/  )| )   ( || ) \ \__| () () |___) (___| )  \  |___) (___| (___) |
(______/ |/     \||/   \__/(_______)\_______/|/    )_)\_______/(_______)
 ```

This is a Python program that simulates the process of evolution, complete with
organisms, genetic codes, and neural networks. The program is intended to explore
the intricacies of the natural world and replicate the processes of evolution
through a simulation.

## Setup

### *Nix(Gnu-Linux, *BSD, MacOS)

+ Make sure you have Python installed using whichever package manager you use.
+ Create a Python-venv.
```bash
python -m venv .venv
source .venv/bin/activate
```
+ Install the dependencies
```
python -m pip install -r requirements.txt
```
+ finally, run it,
```
cd src
python main.py
```
## License

This program is copyright © 2023 Tushar Maharana <tusharhero@sdf.org>,
and Mihir Nallagonda <adhikshithamihir@gmail.com>.

This program is licensed under the terms of the
[GNU GENERAL PUBLIC LICENSE VERSION 3](./LICENSE.md) which means this is Free Software.
