-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.64 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "IterFilesystem"
version = "1.4.3"
description = "Multiprocess directory iteration via os.scandir() with progress indicator via tqdm bars."
authors = ["JensDiemer <[email protected]>"]
keywords=['filesystem', 'scan', 'walk', 'multiprocess', 'scandir']
classifiers = [
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
'Framework :: Django',
"Topic :: Database :: Front-Ends",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Operating System :: OS Independent",
]
# Will be generated from README.creole with: 'poetry run update_rst_readme'
readme='README.rst'
[tool.poetry.dependencies]
python = "^3.6"
tqdm = "*" # https://github.com/tqdm/tqdm
psutil = "*" # https://github.com/mitsuhiko/click
[tool.poetry.dev-dependencies]
poetry-publish = "*" # https://github.com/jedie/poetry-publish
tox = "*"
pytest = "*"
pytest-randomly = "*"
pytest-cov = "*"
coveralls = "*"
isort = "*"
flake8 = "*"
flynt = "*"
autopep8 = "*"
[tool.poetry.scripts]
update_rst_readme="iterfilesystem.publish:update_readme"
publish="iterfilesystem.publish:publish"
print_fs_stats="iterfilesystem.bin.print_fs_stats:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"