-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (27 loc) · 930 Bytes
/
setup.py
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
import setuptools
from setuptools import setup, find_packages
import os
with open("README.md", "r") as fh:
describe_package = fh.read()
setup(
name='multi-freq-ldpy',
version='0.2.4',
license='MIT',
author="Héber H. Arcolezi",
author_email='[email protected]',
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
url='https://github.com/hharcolezi/multi-freq-ldpy',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='local-differential-privacy',
install_requires=[
'numpy', 'numba', 'xxhash'
],
description='Multiple Frequency Estimation Under Local Differential Privacy in Python',
long_description=describe_package,
python_requires=">=3.6",
)