forked from natekupp/ffx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (27 loc) · 963 Bytes
/
setup.py
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
27
import os
from setuptools import setup
setup(
name = "ffx",
version = "1.3.4",
author = "Trent McConaghy",
author_email = "[email protected]",
maintainer = "Nate Kupp",
maintainer_email ="[email protected]",
description = ("Fast Function Extraction: A fast, scalable, and deterministic symbolic regression tool."),
license = "See readme",
keywords = "symbolic regression machine learning",
url = "https://github.com/natekupp/ffx",
packages=['ffx', 'tests'],
scripts=['ffx/bin/runffx'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: Other/Proprietary License",
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)