-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Cédric Foellmi <[email protected]>
- Loading branch information
1 parent
1f85837
commit 461e1ad
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |