-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.32 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.32 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
from setuptools import setup, find_packages
with open('./README.rst') as fp:
long_description = fp.read()
setup(
name = "sbbst",
version = "1.0",
author = "Joseandres Hinojoza",
author_email = "jhinojoza@outlook.com",
description = "A Python implementation of a self balancing binary search tree (AVL Tree). Useful to practice, study and see how a SBBST works.",
long_description = long_description,
long_description_content_type = "text/x-rst",
url = "https://github.com/Ualabi/self_balancing_binary_search_tree",
license = 'MIT',
keywords = ['Self Balancing Binary Search Tree','Balanced Binary Search Tree','Binary Search Tree','Binary Tree','AVL Tree','SBBST','BBST','BST','Print Tree','sbbst'],
packages = find_packages(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Education'
],
install_requires = [''],
)