generated from jarulsamy/python-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.02 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", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "twitter-archive"
description = "A CLI tool to download media from bookmarked tweets."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Joshua Arulsamy", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Archiving",
]
dependencies = [
"python-dotenv ~= 0.20.0",
"requests ~= 2.28.1",
"tqdm ~= 4.64.0",
"tweepy ~= 4.10.0",
]
dynamic = ["version"]
[project.scripts]
twitter-archive = "TwitterArchive.cli:main"
[tool.setuptools]
packages = ["TwitterArchive"]
[tool.setuptools.dynamic]
version = { attr = "TwitterArchive.__version__" }