-
Notifications
You must be signed in to change notification settings - Fork 19
/
MANIFEST.in
25 lines (23 loc) · 861 Bytes
/
MANIFEST.in
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
recursive-include pdsa *
recursive-include tests *.py
recursive-include examples *.py
include LICENSE.txt
include requirements.txt
include README.rst
include MANIFEST.in
global-exclude *.pyc
global-exclude __pycache__/*
global-exclude *.so
global-exclude .DS_Store
global-exclude pdsa/cardinality/hyperloglog.cpp
global-exclude pdsa/cardinality/linear_counter.cpp
global-exclude pdsa/cardinality/probabilistic_counter.cpp
global-exclude pdsa/frequency/count_min_sketch.cpp
global-exclude pdsa/frequency/count_sketch.cpp
global-exclude pdsa/helpers/hashing/mmh.cpp
global-exclude pdsa/helpers/storage/bitvector.cpp
global-exclude pdsa/helpers/storage/bitvector_counter.cpp
global-exclude pdsa/membership/bloom_filter.cpp
global-exclude pdsa/membership/counting_bloom_filter.cpp
global-exclude pdsa/rank/qdigest.cpp
global-exclude pdsa/rank/random_sampling.cpp