first stab at some files for pip

jupyter
server 2020-02-22 11:16:06 -07:00
parent 2a69646882
commit 7a0b198c19
5 changed files with 38 additions and 0 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@ modules/__pycache__/
runs/
*.swp
.ipynb_checkpoints/
build/
dist/
karoo_gp_kstaats.egg-info/

7
README-pip.md 100644
View File

@ -0,0 +1,7 @@
Set up `setup.py`.
```
python3 -m pip install --user --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel
```

0
__init__.py 100644
View File

4
requirements.txt 100644
View File

@ -0,0 +1,4 @@
wheel
sklearn
sympy
tensorflow

24
setup.py 100644
View File

@ -0,0 +1,24 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="karoo_gp-kstaats", # Replace with your own username
version="2.3",
author="Kai Staats",
author_email="pip@overthesun.com",
description="evolutionary algorithm, genetic programming suite",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kstaats/karoo_gp",
packages={''},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
# packages=setuptools.find_packages(),