-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (31 loc) · 854 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
39
[tool.poetry]
name = "pip-rewind"
version = "0.1.1"
description = "Install python modules from pypi from a previous date in history"
authors = ["Amar Paul <amar.paul16@gmail.com>"]
license = "MIT"
readme = "README.md"
include = [
{ path = "tests", format = "sdist" }
]
repository = "https://github.com/Amar1729/pip-rewind"
keywords = ["packaging", "dependency"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
]
[tool.poetry.dependencies]
python = "^3.7"
rss-parser = "^0.2.3"
python-dateutil = "^2.8.1"
pytz = "^2021.1"
tzlocal = "^2.1"
result = "^0.6.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
[tool.poetry.scripts]
pip-rewind = "pip_rewind.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"