-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.11 KB
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
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atlas-world-intel"
version = "1.0.0"
description = "World Intelligence CLI - explore countries, economies, currencies and geography from your terminal"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "Khizar Arain", email = "your@email.com" }
]
keywords = ["cli", "world", "geography", "countries", "terminal", "atlas"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"typer[all]>=0.12.0",
"rich>=13.0.0",
"requests>=2.31.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"thefuzz>=0.22.0",
"pytz>=2024.1",
"pycountry>=23.12.11",
"geopy>=2.4.0",
"forex-python>=1.8",
]
[project.scripts]
atlas = "atlas.main:app"
[project.urls]
Homepage = "https://khizar-arain.vercel.app"
Repository = "https://github.com/khizerarain/atlas"
[tool.setuptools.packages.find]
where = ["."]
include = ["atlas*"]
[tool.setuptools.package-data]
atlas = ["data/*.json"]