-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (52 loc) · 1.65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# pyproject.toml
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wikipedia_tools"
version = "2.4.1"
description='This is a Wikipedia Tool to fetch revisions based on a period of time.'
readme = "README.md"
authors = [{ name = "Roxanne El Baff", email = "[email protected]" }]
license = { file = "LICENSE" }
keywords=['wikipedia', 'wikipedia revisions', 'wikipedia stats']
dependencies = ['pandas>=1.0.1',
'matplotlib>=3.2.1',
'pymediawiki==0.7.2',
'IPy>=1.01',
'seaborn>=0.11.2',
'nlpaf>1.0.0; python_version <= "3.8"',
'tqdm==4.43.0',
'dataclasses==0.6',
'beautifulsoup4',
'requests>=2.0.0,<3.0.0',
]
requires-python = ">=3.7"
[tool.poetry]
# ...
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
]
readme = "README.md"
include = ["data"]
[project.optional-dependencies]
dev = [ "pip-tools"]
[project.urls]
Homepage = 'https://github.com/DLR-SC/wikipedia-periodic-revisions'
#[tool.setuptools.package-data]
#myModule = ["../data/*.csv"]
[tool.setuptools]
# ...
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
[tool.setuptools.packages.find]
where = ["data"]
[tool.setuptools.package-data]
mypkg = ["*.csv"]
[tool.black]
line-length = 79