File size: 729 Bytes
0c0aff7
 
 
 
 
 
 
62494b0
0c0aff7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="pysr", # Replace with your own username
    version="0.1.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",
    packages=setuptools.find_packages(),
    package_data={
        'pysr': ['../julia/*.jl']
    },
    include_package_data=False,
    classifiers=[
        "Programming Language :: Python :: 3",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.3',
)