Skip to content

Commit

Permalink
Adding a whole new pyproject.toml
Browse files Browse the repository at this point in the history
Signed-off-by: Cédric Foellmi <[email protected]>
  • Loading branch information
onekiloparsec committed Nov 5, 2024
1 parent 1f85837 commit 461e1ad
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "arcsecond"
version = "3.3.0"
authors = [
{ name = "Cedric Foellmi", email = "[email protected]" },
]
description = "CLI for arcsecond.io"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
'click',
'requests',
'requests_toolbelt',
'configparser',
'progress'
]

[project.scripts]
arcsecond = "arcsecond.cli:main"

[project.urls]
Homepage = "https://github.com/arcsecond-io/cli"
Issues = "https://github.com/arcsecond-io/cli/issues"
Documentation = "https://docs.arcsecond.io"

0 comments on commit 461e1ad

Please sign in to comment.