-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.18 KB
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
46
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "pycran"
author = "Sultan Iman"
author-email = "sultan.imanhodjaev@gmail.com"
home-page = "https://github.com/imanhodjaev/pycran"
keywords="CRAN,R,metadata,parse,yamp"
description-file = "README.md"
requires-python = ">=3.6"
requires = []
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed"
]
[tool.flit.sdist]
include = ["README.md"]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-cov",
"python-debian",
"deb-pkg-tools>=7.0"
]
dev = [
"bumpversion",
"black==19.10b0",
"isort",
"mypy"
]