-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.33 KB
/
setup.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
###############################################################################
# Main library #
###############################################################################
[metadata]
name = ults
version = 0.1
author =
Julia Grosse
Agustinus Kristiadi
url = https://github.com/JuliaGrosse/ults
project_urls =
Bug Tracker = https://github.com/JuliaGrosse/ults/issues
description = Uncertainty-guided Likelihood-Tree Search
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
[options]
zip_safe = False
packages = find:
include_package_data = True
setup_requires =
setuptools_scm
# Dependencies of the project (semicolon/line-separated):
install_requires =
torch >= 2.0
transformers
datasets
tokenizers
networkx
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
python_requires = >=3.9
[options.packages.find]
exclude = tests*