First Push

Setup Push
This commit is contained in:
danielwilczak101
2020-09-17 12:28:32 -04:00
commit d7fc75ba3d
16 changed files with 133 additions and 0 deletions

BIN
src/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,41 @@
Metadata-Version: 2.1
Name: EasyGA
Version: 0.0.1
Summary: Say hello!
Home-page: https://github.com/danielwilczak/EasyGA
Author: Daniel Wilczak
Author-email: danielwilczak101@gmail.com
License: UNKNOWN
Description: # Hello World
This is an example project demonstration.
## Installation
Run the rolling to install:
```Python
pip install EasyGA
```
## Usage
```python
From hello world import say_hello
# Generate "Hello World"
say_hello()
# Generate "Hello, Everybody!"
say_hello("Everybody!")
```
# Developing Hello World
To install helloworld, along with the tools you need to develop and run tests, run the following in your virtual env:
```bash
$ pip install -e .[dev]
```
Platform: UNKNOWN
Description-Content-Type: text/markdown

View File

@ -0,0 +1,8 @@
README.md
setup.py
src/helloworld.py
src/EasyGA.egg-info/PKG-INFO
src/EasyGA.egg-info/SOURCES.txt
src/EasyGA.egg-info/dependency_links.txt
src/EasyGA.egg-info/requires.txt
src/EasyGA.egg-info/top_level.txt

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@
blessings~=1.7

View File

@ -0,0 +1 @@
helloworld

Binary file not shown.

6
src/helloworld.py Normal file
View File

@ -0,0 +1,6 @@
def say_hello(name=None):
if name is None:
return "Hello, World!"
else:
return f"Hello, {name}!"