-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (56 loc) · 1.76 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
53
54
55
56
57
58
59
from setuptools import find_packages, setup
import versioneer
with open("README.rst", "r") as f:
long_desc = f.read()
setup(
name="exhibition",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Matt Molyneaux",
author_email="[email protected]",
description="A Python static site generator",
long_description=long_desc,
url="https://github.com/moggers87/exhibition",
download_url="https://pypi.org/project/exhibition/",
packages=find_packages(),
test_suite="exhibition.tests",
license="GPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"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 :: Internet",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development",
],
python_requires=">=3.8",
install_requires=[
"click",
"jinja2>=3.0,<3.2",
"markdown",
"ruamel.yaml",
"typogrify",
"pypandoc",
],
extras_require={
"docs": [
"sphinx",
"sphinx_rtd_theme",
"sphinx-click",
],
},
entry_points={
"console_scripts": [
"exhibit = exhibition.command:exhibition",
]
},
include_package_data=True,
)