-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (32 loc) · 1015 Bytes
/
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
from setuptools import setup
setup(
name="punkweb_bb",
version="0.5.1",
author="Punkweb",
author_email="punkwebnet@gmail.com",
packages=["punkweb_bb"],
url="https://github.com/Punkweb/PunkwebBB",
license="BSD-3-Clause",
description="Django application that provides a simple and modern forum board software for your Django website.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
include_package_data=True,
package_data={"": ["README.md"]},
install_requires=[
"django>=4.0",
"bbcode",
"markdown",
"pillow",
"expiringdict",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)