forked from kavdi/data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 740 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 740 Bytes
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
setup(
name='data-structures',
description='A number of classic data structures and sorting algorithms impemented in python',
package_dir={'': 'src'},
py_modules=[
'linked_list',
'stack',
'dll',
'que_',
'deque',
'binheap',
'priorityq',
'graph_1',
'weight_graph',
'bst',
'balance_bst',
'hash_table',
'trie',
'bubble_sort',
'insertion_sort',
'merge_sort',
'quick_sort'
],
authors='Megan, Kavdi',
author_email='kavdyjh@gmail.com',
install_requires=[],
extras_require={
'test': ['pytest', 'pytest-watch', 'pytest-cov', 'tox']
}
)