-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (66 loc) · 2.24 KB
/
Copy pathsetup.py
File metadata and controls
69 lines (66 loc) · 2.24 KB
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
66
67
68
69
"""
Setup script for LinkBioSite - backward compatibility with older pip versions.
"""
from setuptools import setup
# Read the contents of README file
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="linkbiosite",
version="3.1.0",
description="A modern, brutalist-designed static site generator for link bio pages",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rafnix Guzmán",
author_email="rafnixg@gmail.com",
url="https://github.com/rafnixg/links",
packages=["linkbiosite"],
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"jinja2>=3.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"isort>=5.10.0",
"flake8>=4.0.0",
"mypy>=1.0.0",
],
"docs": [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.2.0",
],
},
entry_points={
"console_scripts": [
"linkbiosite=linkbiosite.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
],
keywords="static-site-generator link-bio jinja2 brutalist-design",
python_requires=">=3.8",
project_urls={
"Homepage": "https://github.com/rafnixg/links",
"Documentation": "https://linkbiosite.readthedocs.io/",
"Repository": "https://github.com/rafnixg/links",
"Issues": "https://github.com/rafnixg/links/issues",
"Changelog": "https://github.com/rafnixg/links/blob/main/CHANGELOG.md",
},
)