-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.06 KB
/
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.scripts]
scroll = "scroll:scroll"
[tool.flit.metadata]
module = "scroll"
author = "Edison Abahurire"
author-email = "abahedison@gmail.com"
home-page = "https://github.com/SimiCode/scroll"
requires=[
"click",
]
requires-python=">=3.6"
description-file="README.md"
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: Implementation :: CPython',
"License :: OSI Approved :: MIT License",
]
keywords="scroll documentation unit tests"
[tool.flit.metadata.urls]
Bug-Tracker="https://github.com/SimiCode/SCROLL/issues"
Documentation="https://github.com/SimiCode/SCROLL/blob/master/README.md"
Source-Code="https://github.com/SimiCode/SCROLL/"