forked from laurentluce/python-algorithms
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
29 lines (27 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 1.02 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
fromdistutils.coreimportsetup
setup(
name="algorithms",
packages= ['algorithms'],
version="0.1",
description="Algorithms implemented in Python",
author="Laurent Luce",
author_email="laurentluce49@yahoo.com",
url="http://github.com/laurentluce/python-algorithms",
download_url="http://github.com/laurentluce/python-algorithms",
keywords= ["algorithms"],
classifiers= [
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Python Algorithms Library
----------------------------
DESCRIPTION
The purpose of this library is to help you with basic and more advanced
algorithms
LICENSE The Python Algorithms Library is distributed under the MIT
License """ )