karoo_gp/setup.py

24 lines
685 B
Python
Raw Permalink Normal View History

2020-02-22 11:51:53 -07:00
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="karoo_gp-jebba",
version="2.3",
author="Kai Staats",
2020-02-23 17:25:37 -07:00
author_email="github@overthesun.com",
2020-02-22 11:51:53 -07:00
description="evolutionary algorithm, genetic programming suite",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kstaats/karoo_gp",
2020-02-23 17:25:37 -07:00
packages=setuptools.find_packages(),
2020-02-22 11:51:53 -07:00
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
2020-02-23 17:25:37 -07:00
#packages={''},