-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 946 Bytes
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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['botbot']
[project]
name = 'botbot'
version = '0.5.5'
description = 'A meta-bot for Euphoria.'
authors = [
{ name='Rishov Sarkar' },
]
readme = 'README.md'
# TODO: add minimum required python version
dependencies = [
'eupy @ git+https://github.com/ArkaneMoose/EuPy.git@2716bc40d7514726d85f22720a3ec0fc98471a43#egg=eupy-1.2.1',
'simpleeval >=1.0.0, <2.0.0',
]
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Interpreters',
]
license = 'MIT'
license-files = ['LICEN[CS]E*']
[project.urls]
GitHub = 'https://github.com/ArkaneMoose/BotBot'
Issues = 'https://github.com/ArkaneMoose/BotBot/issues'
'BotBot Wiki' = 'https://github.com/ArkaneMoose/BotBot/wiki'
[project.scripts]
botbot = 'botbot.__main__:main'