-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 721 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 721 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
##
# Copyright 2023 IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
##
import setuptools
import pathlib
setuptools.setup(
name="lnn",
version="1.0",
author="IBM Research",
description="A `Neural = Symbolic` framework for weighted " "real-valued logic",
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/IBM/LNN",
packages=setuptools.find_packages(),
install_requires=pathlib.Path("requirements.txt").read_text().replace("==", ">="),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)