diff --git a/README-pip.md b/README-pip.md index 5c777b1..373affd 100644 --- a/README-pip.md +++ b/README-pip.md @@ -12,16 +12,25 @@ Then run commands like this, changing the username "jebba" to your username. ``` # Install dependencies python3 -m pip install --user --upgrade setuptools wheel twine + +# Remove old build +rm -rf build dist karoo_gp_*.egg-info + # Create Archive python3 setup.py sdist bdist_wheel + # Upload to Test Archive python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* + # Check Test Archive https://test.pypi.org/project/karoo_gp-jebba + # Install Test Archive python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps karoo_gp-jebba + # Upload to Main Archive python3 -m twine upload dist/* + # Install Main Archive python3 -m pip install karoo_gp-jebba ``` diff --git a/setup.py b/setup.py index e63b966..67cc2bf 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,12 @@ setuptools.setup( name="karoo_gp-jebba", version="2.3", author="Kai Staats", + author_email="github@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={''}, + packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", @@ -19,3 +20,4 @@ setuptools.setup( ], python_requires='>=3.6', ) + #packages={''},