-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
52 lines (47 loc) · 1.67 KB
/
setup.py
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
#!/usr/bin/env python3
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="holidata",
version="2024.11.1",
description="Holidata is a utility for algorithmically producing holidays for a given locale and year",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GothenburgBitFactory/holidata",
author="Gothenburg Bit Factory",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
],
keywords="holiday, calendar",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
python_requires=">=3.9, <4",
install_requires=[
"arrow >= 1.3.0",
"docopt >= 0.6.2",
],
extras_require={
"test": [
"pytest >= 7.4.2",
"syrupy >= 4.6.1",
]
},
scripts=["bin/holidata"],
project_urls={
"Bug Reports": "https://github.com/GothenburgBitFactory/holidata/issues",
"Source": "https://github.com/GothenburgBitFactory/holidata",
"Website": "https://holidata.net",
},
)