-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1007 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 1007 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
from setuptools import setup
VERSION = '0.2.2'
setup(
name='suda',
version=VERSION,
py_modules=['suda'],
url='https://github.com/scottbw/suda',
download_url='https://github.com/scottbw/suda/tarball/{}'.format(VERSION),
license='MIT',
author='Scott Wilson',
author_email='scott.bradley.wilson@gmail.com',
description='Python library for implementing Special Uniques Detection Algorithm (SUDA) '
'for measuring disclosure control risk in synthetic data',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['pandas'],
entry_points={
'console_scripts': ['suda=suda:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.11'
]
)