forked from mehdisadeghi/clashogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 858 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
[build-system]
requires = ['flit']
build-backend = 'flit.buildapi'
[tool.flit.metadata]
module = 'clashogram'
author = 'Mehdi Sadeghi'
author-email = 'mehdi@mehdix.org'
home-page = 'https://github.com/mehdisadeghi/clashogram'
requires-python = '>=3.5'
classifiers = [
'Environment :: Console',
'Natural Language :: Persian',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License']
description-file = 'README.rst'
keywords = 'coc telegram clashofclans'
requires = ['requests',
'jdatetime',
'pytz',
'python-dateutil',
'click']
[tool.flit.metadata.requires-extra]
test = ['pytest']
i18n = ['babel']
[tool.flit.scripts]
clashogram = 'clashogram:main'