-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (43 loc) · 1.43 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
"""
Package definition
"""
from setuptools import setup
VERSION = "0.6.0"
# @see https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# @see https://github.com/pypa/sampleproject/blob/master/setup.py
setup(
name="xml_sitemap_writer",
version=VERSION,
author="Maciej Brencz",
author_email="maciej.brencz@gmail.com",
license="MIT",
description="Python3 package for writing large XML sitemaps with no external dependencies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pigs-will-fly/py-xml-sitemap-writer",
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
],
python_requires=">=3.9",
py_modules=["xml_sitemap_writer"],
extras_require={
"dev": [
"black==25.1.0",
"coveralls==4.0.1",
"pylint==3.3.4",
"pytest==8.3.4",
"pytest-cov==6.0.0",
]
},
)