forked from freeseek/getmyancestors
-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
40 lines (35 loc) · 1010 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
[project]
name = "getmyancestors"
description = "Retrieve GEDCOM data from FamilySearch Tree"
requires-python = ">=3.7"
license = {text = "GNU"}
keywords = [
"getmyancestors",
"familysearch",
"fstogedcom",
"gedcom",
]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"babelfish==0.6.0",
"diskcache==5.2.1",
"requests==2.25.1",
"fake-useragent==1.2.1",
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "getmyancestors.__version__"}
readme = {file = ["README.md"]}
[project.urls]
HomePage = "https://github.com/Linekio/getmyancestors"
[tool.setuptools.package-data]
getmyancestors = ["fstogedcom.png"]
[project.scripts]
getmyancestors = "getmyancestors.getmyancestors:main"
mergemyancestors = "getmyancestors.mergemyancestors:main"
fstogedcom = "getmyancestors.fstogedcom:main"