-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.11 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "prosperity2submit"
description = "Command-line submitter for IMC Prosperity 2 algorithms"
version = "0.0.0"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "Jasper van Merle", email = "jaspervmerle@gmail.com"}]
keywords = ["imc", "prosperity", "submit", "submitter"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.9"
dependencies = [
"keyring",
"requests",
"requests-toolbelt",
]
[project.scripts]
prosperity2submit = "prosperity2submit.__main__:main"
[project.urls]
Repository = "https://github.com/jmerle/imc-prosperity-2-submitter"
Issues = "https://github.com/jmerle/imc-prosperity-2-submitter/issues"
Changelog = "https://github.com/jmerle/imc-prosperity-2-submitter/releases"
[tool.setuptools.packages.find]
include = ["prosperity2submit", "prosperity2submit.*"]