-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
50 lines (44 loc) · 2.03 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
##############################
### ALGO MODULE SETUP TOOL ###
##############################
from distutils.core import setup
setup(name='algo',
version='1.0',
python_modules=['algo'],
short_description="Different Algorithms.",
author="Rafayel Mkrtchyan",
date_created="6/22/2014",
country = "Armenia",
author_email="[email protected]",
download_url="http://github.com",
keywords=["Different Algorithms"],
classifiers= [
"Programming Language: Python",
"Operating System: OS Independent",
"License: MIT License",
"Audience: Python Developers",
"Development Status: Complete Version",
"Topic : Software Development, Libraries, Python Modules"
],
long_description = """
####################################
### Python Module for Algorithms ###
####################################
DESCRIPTION
This library was created in order to help Python developers easily
implement some very important algorithms. Algorithms include topics from
various subfields of Computer Science. Module contains 50 algorithms. For
more information, read the DOCUMENTATION of the module. You can find the
documentaion of the module in the same Github repository.
This is the First version of the module and in the future new updates
will occur.
CREATOR
Algorithms were implemented by the author - Rafayel Mkrtchyan.
I don't claim to be perfect. For suggestions or improvements contact:
LICENSE
License for Algo Module is distributed under the MIT License.
---------------------------------------------------------------------------
---------------------------------------------------------------------------
"""
)