-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (23 loc) · 935 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name="punk",
version="1.0.1",
description="Primitives for Uncovering New Knowledge.",
long_description="Machine Learning pipeline elements.",
url="https://github.com/NewKnowledge/punk",
author="New Knowledge",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="TA1 primitive, feature selection, novelty detection",
packages=find_packages(exclude=['tests']),
install_requires=["numpy", "scikit-learn", "scipy"],
)