-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (48 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup
from setuptools import find_packages
MAJOR_VERSION = '0'
MINOR_VERSION = '5'
MICRO_VERSION = '62'
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(
name="xtoy",
version=VERSION,
description="get xtoyed predictions from raw data",
url="https://github.com/kootenpv/xtoy",
author="Pascal van Kooten",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"pandas",
"scikit-learn>=0.18.1,<0.20",
"xgboost==0.72.1",
"lightgbm==2.2.2",
"deap",
"bitstring",
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Utilities",
],
keywords=["data science", "machine learning", "genetic programming"],
zip_safe=False,
platforms="any",
)