forked from gahjelle/pythonji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.28 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
36
37
38
39
40
41
42
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "pythonji"
author = "Geir Arne Hjelle"
author-email = "[email protected]"
home-page = "https://github.com/gahjelle/pythonji"
description-file = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = "python emoji"
# Requirements
requires-python = ">=3.6"
requires = [
"emoji",
]
[tool.flit.metadata.requires-extra]
dev = ["black", "bumpversion", "flake8", "flit", "isort", "mypy", "pre-commit"]
doc = ["mkdocs"]
test = ["black", "flake8", "isort", "mypy", "pytest", "pytest-cov", "tox"]
[tool.flit.scripts]
# "🐍" = "pythonji.__main__:main"
pythonji = "pythonji.__main__:main"