-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 1021 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
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smile_base"
version = "0.0.1"
description = "SMILE Base"
authors = [
{ name = "Bart Gajderowicz", email = "bgajdero@gmail.com" },
]
requires-python = ">=3.9"
readme = "README.md"
[project.urls]
repository = "https://github.com/csse-uoft/smile-base"
[tool.setuptools.packages.find]
where = ["src"]
include = ["smile_base", "smile_base.*"]
exclude = ["tests"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.poetry]
keywords = ['python']
classifiers= [
"Development Status :: 1 - Planning",
"Topic :: Database",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]