-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
44 lines (40 loc) · 1.26 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
import os
from setuptools import setup
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
requires = [
"flask",
"Werkzeug>=0.15.0",
"pygments",
"httpauth>=0.4",
"humanize",
"dulwich>=0.19.3",
]
setup(
name="klaus",
version="3.0.1",
author="Jonas Haag",
author_email="jonas@lophus.org",
packages=["klaus", "klaus.contrib"],
include_package_data=True,
zip_safe=False,
url="https://github.com/jonashaag/klaus",
description="The first Git web viewer that Just Works™.",
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Version Control",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
install_requires=requires,
entry_points={
"console_scripts": ["klaus=klaus.cli:main"],
},
)