forked from trevorstephens/gplearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.54 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
#! /usr/bin/env python
"""Genetic Programming in Python, with a scikit-learn inspired API"""
from setuptools import setup, find_packages
import gplearn
DESCRIPTION = __doc__
VERSION = gplearn.__version__
setup(name='gplearn',
version=VERSION,
description=DESCRIPTION,
long_description=open("README.rst").read(),
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
author='Trevor Stephens',
author_email='[email protected]',
url='https://github.com/trevorstephens/gplearn',
license='new BSD',
packages=find_packages(exclude=['*.tests',
'*.tests.*']),
zip_safe=False,
package_data={'': ['LICENSE']},
install_requires=['scikit-learn>=0.22.1',
'joblib>=0.13.0'])