-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (42 loc) · 1.52 KB
/
setup.py
File metadata and controls
51 lines (42 loc) · 1.52 KB
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
51
"""
__ ____
/\ \ /\ _`\
\ \ \ __ __ _ __ ___ \ \ \L\ \ __ __
\ \ \ __ /'__`\ /'__`\ /\`'__\/' _ `\\ \ ,__//\ \/\ \
\ \ \L\ \/\ __/ /\ \L\.\_\ \ \/ /\ \/\ \\ \ \/ \ \ \_\ \
\ \____/\ \____\\ \__/.\_\\ \_\ \ \_\ \_\\ \_\ \/`____ \
\/___/ \/____/ \/__/\/_/ \/_/ \/_/\/_/ \/_/ `/___/> \
/\___/
\/__/
Created by Tomáš Sandrini
"""
import setuptools
try:
import learnpy
except (ImportError, SyntaxError):
print("error: LearnPy requires Python 3.5 or greater.")
quit(1)
VERSION = learnpy.__version__
DOWNLOAD = "https://github.com/tsandrini/learnpy/archive/%s.tar.gz" % VERSION
setuptools.setup(
name="LearnPy",
version=VERSION,
author="Tomáš Sandrini",
author_email="tomas.sandrini@seznam.cz",
description="Implementation of popular ML algs in python",
long_description="Implementation of popular ML algs in python",
license="MIT",
url="https://github.com/tsandrini/learnpy",
download_url=DOWNLOAD,
classifiers=[
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
packages=["learnpy"],
python_requires=">=3.5",
test_suite="tests",
include_package_data=True
)