-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 948 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
from setuptools import find_packages, setup
setup(
name="opendp-logger",
version="0.3.0",
description="A logger wrapper for OpenDP to keep track of, import, export the AST",
long_description = open("README.md", "r").read(),
long_description_content_type = "text/markdown",
url="https://github.com/opendp/opendp-logger",
author='The OpenDP Project',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='opendp logger ast',
packages=find_packages(),
python_requires=">=3.9, <4",
install_requires=[
"opendp >= 0.8.0"
],
)