File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ from setuptools import setup , find_packages
4+
5+ setup (
6+ name = 'segmenttree' ,
7+ version = '0.0.2' ,
8+ keywords = ('segment' , 'tree' ),
9+ description = 'A Python implementation of Segment Tree' ,
10+ license = 'MIT License' ,
11+
12+ url = 'http://liangsun.org' ,
13+ author = 'Liang Sun' ,
14+ author_email = 'i@liangsun.org' ,
15+
16+ packages = find_packages (),
17+ include_package_data = True ,
18+ platforms = 'any' ,
19+ install_requires = [],
20+ )
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22from unittest import main , TestCase
33
4- from segtree import SegmentTree
4+ from segmenttree import SegmentTree
55
66class TestSegmentTree (TestCase ):
77 def test_segtree (self ):
You can’t perform that action at this time.
0 commit comments