Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel-Maddock committed Aug 16, 2020
1 parent cec5a13 commit 018fbd7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
from setuptools import setup, find_packages
import shutil

with open("README.md", "r") as fh:
long_description = fh.read()

shutil.rmtree("./build")
shutil.rmtree("./dist")
shutil.rmtree("./pure_ldp.egg-info")

setup(
name='pure-ldp',
version='1.0.4',
packages=find_packages(include=['pure_ldp'], exclude=['pure_ldp.development', ]),
version='1.0.5',
packages=find_packages(exclude=['*development*', "*apple_sf*", "*treehistogram*", "*rappor*",
"*priv_count_sketch*", "*hashtogram*", "*explicit_hist*", ]),
install_requires=["xxhash", "numpy", "scipy", "bitstring", "bitarray"],
url='https://github.com/Samuel-Maddock/pure-LDP',
license='',
license='MIT',
author='Samuel Maddock',
author_email='samuel-maddock@hotmail.com',
description='Simple pure LDP frequency oracle implementations',
Expand Down

0 comments on commit 018fbd7

Please sign in to comment.