PySR / setup.py
MilesCranmer's picture
Breaking version change to 0.4.0
d81b4be
raw
history blame
754 Bytes
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pysr", # Replace with your own username
version="0.4.0",
author="Miles Cranmer",
author_email="[email protected]",
description="Simple and efficient symbolic regression",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MilesCranmer/pysr",
install_requires=[
"numpy",
"pandas",
"sympy"
],
packages=setuptools.find_packages(),
include_package_data=False,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.3',
)