-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (29 loc) · 960 Bytes
/
pyproject.toml
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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'linglong'
version = '1.0.3'
description = 'A small-scale Chinese pretrained language model.'
readme = 'README.md'
requires-python = '>=3.11,<3.13'
license = {file = 'LICENSE'}
authors = [
{name = 'NKCS Intelligent Computing Lab', email = 'zyzhong@mail.nankai.edu.cn'},
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.urls]
Repository = 'https://github.com/nkcs-iclab/linglong'
[tool.setuptools]
platforms = ['any']
[tool.setuptools.packages.find]
include = ['linglong', 'linglong.*']