-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (28 loc) · 904 Bytes
/
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
37
38
[build-system]
requires = ['setuptools>=61.0.0']
build-backend = 'setuptools.build_meta'
[project]
name = "django-tweets"
version = "0.0.9"
authors = [{ name = "Rami", email = "[email protected]" }]
description = "An app to manage tweets in a Django project"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 4",
]
dependencies = ["tweepy", "django"]
[tool.setuptools]
packages = ["django_tweets", "django_tweets.migrations"]
[project.urls]
"Homepage" = "https://github.com/ramiboutas/django-tweets"
"Bug Tracker" = "https://github.com/ramiboutas/django-tweets/issues"
[tool.coverage.run]
branch = true
omit = ["tests/*", "manage.py", "config/*"]
[tool.coverage.paths]
source = ["django_tweets/"]